aaron.ballman added a comment.

Thank you for this, I think this is good incremental progress and is almost 
ready to go. Just a few small nits, but also, can you also add a release note 
for the fix (be sure to mention which issue is being closed too).

Note, the precommit CI failures are unrelated to the changes in this patch.



================
Comment at: clang/test/Sema/warn-bitwise-compare.c:41
+
+  int y = ((8 & x)  == 3) ? 1 : 2;  // expected-warning {{bitwise comparison 
always evaluates to false}}
+      y = ((-8 & x) == 3) ? 1 : 2;  // expected-warning {{bitwise comparison 
always evaluates to false}}
----------------



================
Comment at: clang/test/Sema/warn-bitwise-compare.c:68
+
+  if ((x^0) == 0){}
+
----------------



================
Comment at: clang/test/SemaCXX/warn-unreachable.cpp:402-408
+  if (x == -1)   // expected-note {{silence}}
+    calledFun(); // expected-warning {{will never be executed}}
 
-  if (x != -1)
+  if (x != -1)   // expected-note {{silence}}
     calledFun();
   else
+    calledFun(); // expected-warning {{will never be executed}}
----------------
We should move these up above the TODO comment on line 399, since these are now 
getting the expected warnings.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D130510/new/

https://reviews.llvm.org/D130510

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to