[PATCH] D71145: [InstCombine] Allow to limit the max number of iterations
Jakub Kuderski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 10 14:03:05 PST 2019
kuhar marked an inline comment as done.
kuhar added inline comments.
================
Comment at: llvm/lib/Transforms/InstCombine/InstructionCombining.cpp:3685
+ : FunctionPass(ID), ExpensiveCombines(ExpensiveCombines),
+ MaxIterations(UINT_MAX) {
+ initializeInstructionCombiningPassPass(*PassRegistry::getPassRegistry());
----------------
Forgot to update the constant here. Will fix in the next revision.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D71145/new/
https://reviews.llvm.org/D71145
More information about the llvm-commits
mailing list