http://llvm.org/bugs/show_bug.cgi?id=4462
Kaelyn Uhrain <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |FIXED --- Comment #1 from Kaelyn Uhrain <[email protected]> 2012-06-19 16:17:56 CDT --- -Wpadded was added to clang in r114544 (along with -Wpacked). From a recent build: $ cat tmp.cc struct foo { char c; int i; } f; $ ./bin/clang -c -o /dev/null -Wpadded tmp.cc tmp.cc:3:7: warning: padding struct 'foo' with 3 bytes to align 'i' [-Wpadded] int i; ^ 1 warning generated. -- 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
