[llvm] 78aa61d - [InstCombine] matchOrConcat - return Value* not Instruction* (#128921)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 00:31:47 PST 2025
Author: Simon Pilgrim
Date: 2025-02-27T08:31:43Z
New Revision: 78aa61d8b60fc3e9d00236332078d14808abbc57
URL: https://github.com/llvm/llvm-project/commit/78aa61d8b60fc3e9d00236332078d14808abbc57
DIFF: https://github.com/llvm/llvm-project/commit/78aa61d8b60fc3e9d00236332078d14808abbc57.diff
LOG: [InstCombine] matchOrConcat - return Value* not Instruction* (#128921)
NFC to make it easier to use builders in the future that might constant fold etc.
Added:
Modified:
llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
index 4616ea6ab5487..175c653f17f07 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
@@ -3072,8 +3072,7 @@ static Instruction *matchFunnelShift(Instruction &Or, InstCombinerImpl &IC) {
}
/// Attempt to combine or(zext(x),shl(zext(y),bw/2) concat packing patterns.
-static Instruction *matchOrConcat(Instruction &Or,
- InstCombiner::BuilderTy &Builder) {
+static Value *matchOrConcat(Instruction &Or, InstCombiner::BuilderTy &Builder) {
assert(Or.getOpcode() == Instruction::Or && "bswap requires an 'or'");
Value *Op0 = Or.getOperand(0), *Op1 = Or.getOperand(1);
Type *Ty = Or.getType();
@@ -3614,7 +3613,7 @@ Instruction *InstCombinerImpl::visitOr(BinaryOperator &I) {
if (Instruction *Funnel = matchFunnelShift(I, *this))
return Funnel;
- if (Instruction *Concat = matchOrConcat(I, Builder))
+ if (Value *Concat = matchOrConcat(I, Builder))
return replaceInstUsesWith(I, Concat);
if (Instruction *R = foldBinOpShiftWithShift(I))
More information about the llvm-commits
mailing list