| commit | cdfb1ae7f793ebe733330a74e525345bf30c9cc4 | [log] [tgz] |
|---|---|---|
| author | Nico Weber <nicolasweber@gmx.de> | Sun Jun 03 07:07:00 2012 +0000 |
| committer | Nico Weber <nicolasweber@gmx.de> | Sun Jun 03 07:07:00 2012 +0000 |
| tree | 19a66b4aa33b11f473de6a64d94198d19c5838b8 | |
| parent | 5097e4f38a747061045575f246e9500ef6b75871 [diff] |
Improve fixit for comparison operator on lhs of bitwise operator.
Before:
test.cc:2:18: note: place parentheses around the == expression to silence this warning
if (0 == flags & 0xdd)
^
( )
Now:
test.cc:2:18: note: place parentheses around the == expression to silence this warning
if (0 == flags & 0xdd)
^
( )
llvm-svn: 157897