[Mlir-commits] [mlir] [mlir][LLVM] Support `immargs` in LLVM_IntrOpBase intrinsics (PR #73013)
Christian Ulmann
llvmlistbot at llvm.org
Wed Nov 22 04:59:58 PST 2023
================
@@ -1276,7 +1276,7 @@ struct VectorScalableInsertOpLowering
matchAndRewrite(vector::ScalableInsertOp insOp, OpAdaptor adaptor,
ConversionPatternRewriter &rewriter) const override {
rewriter.replaceOpWithNewOp<LLVM::vector_insert>(
- insOp, adaptor.getSource(), adaptor.getDest(), adaptor.getPos());
+ insOp, adaptor.getDest(), adaptor.getSource(), adaptor.getPos());
----------------
Dinistro wrote:
Oh, I understand now. I did not realize that this change didn't result in a different intrinsic print. Sorry for the noise. In that case, ignore my suggestion 😅
https://github.com/llvm/llvm-project/pull/73013
More information about the Mlir-commits
mailing list