http://llvm.org/bugs/show_bug.cgi?id=10703
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected], | |[email protected] Resolution| |FIXED --- Comment #1 from [email protected] 2012-10-05 16:56:16 CDT --- David Blaikie fixed this in r165283 by introducing -Wshift-op-parentheses. warning: '-' within '<<' [-Wshift-op-parentheses] int x = y << 8 - z << 0; ~~ ~~^~~ note: place parentheses around the '-' expression to silence this warning int x = y << 8 - z << 0; ^ ( ) -- 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
