[LLVMbugs] [Bug 3818] New: [irgen] missing alias definition
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Sun Mar 15 05:27:57 PDT 2009
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: unassignedclangbugs at nondot.org
ReportedBy: daniel at zuster.org
CC: llvmbugs at cs.uiuc.edu
Bad:
--
ddunbar at frank:tmp$ cat t.c
extern int g0;
int g1 = 0;
extern int g0 __attribute((alias("g1")));
ddunbar at frank:tmp$ ccc -c t.c && nm t.o
00000000 B g1
ddunbar at 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.
More information about the llvm-bugs
mailing list