[llvm] [GVN] MemorySSA for GVN: embed the memory state in symbolic expressions (PR #123218)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 00:54:25 PST 2025
================
@@ -2337,7 +2417,7 @@ uint32_t GVNPass::ValueTable::phiTranslateImpl(const BasicBlock *Pred,
}
if (uint32_t NewNum = expressionNumbering[Exp]) {
- if (Exp.opcode == Instruction::Call && NewNum != Num)
+ if (!MSSA && Exp.opcode == Instruction::Call && NewNum != Num)
----------------
dtcxzyw wrote:
We can remove this change first if it doesn't break any existing regression test.
https://github.com/llvm/llvm-project/pull/123218
More information about the llvm-commits
mailing list