http://llvm.org/bugs/show_bug.cgi?id=3818

           Summary: [irgen] missing alias definition
           Product: clang
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: LLVM Codegen
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


Bad:
--
ddun...@frank:tmp$ cat t.c
extern int g0;
int g1 = 0;
extern int g0 __attribute((alias("g1")));
ddun...@frank:tmp$ ccc -c t.c && nm t.o
00000000 B g1
ddun...@frank:tmp$ gcc -c t.c && nm t.o
00000000 B g0
00000000 B g1
--

This blocks glib-2.18.4.


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to