[PATCH] D60723: [EarlyCSE] detect equivalence of selects with inverse conditions and commuted operands (PR41101)
Nikita Popov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 15 10:25:38 PDT 2019
nikic added inline comments.
================
Comment at: llvm/lib/Transforms/Scalar/EarlyCSE.cpp:185
+ }
+ return hash_combine(Inst->getOpcode(), Pred, TVal, FVal);
+ }
----------------
Shouldn't the cmp operands be hashed as well?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60723/new/
https://reviews.llvm.org/D60723
More information about the llvm-commits
mailing list