http://llvm.org/bugs/show_bug.cgi?id=8871
John McCall <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID --- Comment #2 from John McCall <[email protected]> 2010-12-29 12:49:00 CST --- Both of these reported issues — that 'double' and the stack are only four-byte aligned — are specified by the i386 Linux platform ABI, and changing it would completely break binary compatibility. You can request additional alignment for a struct using __attribute__((aligned)); there is nothing you can do to request additional stack alignment. -- 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
