http://llvm.org/bugs/show_bug.cgi?id=10081
Bill Wendling <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |INVALID --- Comment #4 from Bill Wendling <[email protected]> 2011-08-09 15:09:16 CDT --- Doh! The fix wasn't correct. As Eli pointed out, this won't compile with it: static void *x; static void *y = &x; static void *x = &y; void *z = x; The real solution is to compile the program as a C program and not as a C++ program. -- 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
