[llvm] [InstCombine] Allow folds of shifts by constants for scalable vectors again (PR #132522)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 23:53:01 PDT 2025
================
@@ -428,7 +428,10 @@ Instruction *InstCombinerImpl::commonShiftTransforms(BinaryOperator &I) {
return R;
Constant *CUI;
- if (match(Op1, m_ImmConstant(CUI)))
+ if (match(Op1, m_Constant(CUI)) &&
+ (!isa<ConstantExpr>(CUI) ||
----------------
dtcxzyw wrote:
Can you add a fixme here to note that we should remove this special case after we use ConstantInt to represent a scalable vector splat by default?
https://github.com/llvm/llvm-project/pull/132522
More information about the llvm-commits
mailing list