[llvm] [LoopSimplifyCFG] Fix SCEV invalidation after removing dead exit (PR #127536)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 05:49:58 PST 2025
================
@@ -370,6 +370,7 @@ class ConstantTerminatorFoldingImpl {
for (Instruction *I : DeadInstructions) {
SE.forgetBlockAndLoopDispositions(I);
+ SE.forgetValue(I);
----------------
nikic wrote:
If we call forgetValue(), we should drop forgetBlockAndLoopDispositions(), as forgetValue() already takes care of this.
https://github.com/llvm/llvm-project/pull/127536
More information about the llvm-commits
mailing list