[PATCH] D62644: [EarlyCSE] Ensure equal keys have the same hash value
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 11 10:32:07 PDT 2019
spatel added inline comments.
================
Comment at: llvm/lib/Transforms/Scalar/EarlyCSE.cpp:83-86
+static cl::opt<bool> EarlyCSEDebugHash(
+ "earlycse-debug-hash", cl::init(false), cl::Hidden,
+ cl::desc("Perform extra assertion checking to verify that SimpleValue's hash "
+ "function is well-behaved w.r.t. its isEqual predicate"));
----------------
Since the code has an ifdef guard, do we want the ifdef guard on the option itself?
Or just remove the guard at the use, so we can use/test this option even with a release build?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62644/new/
https://reviews.llvm.org/D62644
More information about the llvm-commits
mailing list