[PATCH] D87340: [EarlyCSE] Handle masked loads and stores

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 21 16:32:08 PDT 2020


efriedma added inline comments.


================
Comment at: llvm/lib/Transforms/Scalar/EarlyCSE.cpp:898
+        if (!Int0->isZero() && Int1->isZero())
+          return false;
+      }
----------------
`!Int0->isZero() && Int1->isZero()` is always true.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D87340



More information about the llvm-commits mailing list