Override hasAndNotCompare() to use more ANDN instead of using AND
and NOT.
This patch enables the following transforms:
(X & Y) == Y ---> (~X & Y) == 0
(X & Y) != Y ---> (~X & Y) != 0.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo