[PATCH] D157260: [X86][NFC]Remove dead code in IfConversion.cpp

Phoebe Wang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 7 19:05:06 PDT 2023


pengfei accepted this revision.
pengfei added inline comments.


================
Comment at: llvm/lib/CodeGen/IfConversion.cpp:544-549
           if (isFalse) {
-            if (isRev) ++NumTriangleFRev;
-            else       ++NumTriangleFalse;
+            ++NumTriangleFalse;
           } else {
             if (isRev) ++NumTriangleRev;
             else       ++NumTriangle;
           }
----------------
How about:


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D157260



More information about the llvm-commits mailing list