[llvm] [VectorCombine] scalarizeLoadExtract - don't create scalar loads if any extract is waiting to be erased (PR #129375)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 1 03:55:53 PST 2025


================
@@ -1579,6 +1579,11 @@ bool VectorCombine::scalarizeLoadExtract(Instruction &I) {
     if (!UI || UI->getParent() != LI->getParent())
       return false;
 
+    // If any extract is waiting to be erased, then bail out as this will
+    // distort the cost calculation and possibly lead to infinite loops.
+    if (isInstructionTriviallyDead(UI))
----------------
dtcxzyw wrote:

Can we use `UI->use_empty()` instead?


https://github.com/llvm/llvm-project/pull/129375


More information about the llvm-commits mailing list