[Mlir-commits] [mlir] Fix argument name of GEPOp builder (PR #74810)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Dec 7 22:31:14 PST 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
@llvm/pr-subscribers-mlir-llvm
Author: None (xiaoleis-nv)
<details>
<summary>Changes</summary>
This MR fix the argument name of GEPOp builder from `basePtrType` to `elementType` to avoid confusion.
---
Full diff: https://github.com/llvm/llvm-project/pull/74810.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td (+2-2)
``````````diff
diff --git a/mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td b/mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
index 88d9cd2c71c0cc..d7690b84807f6e 100644
--- a/mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
+++ b/mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
@@ -284,10 +284,10 @@ def LLVM_GEPOp : LLVM_Op<"getelementptr", [Pure,
}];
let builders = [
- OpBuilder<(ins "Type":$resultType, "Type":$basePtrType, "Value":$basePtr,
+ OpBuilder<(ins "Type":$resultType, "Type":$elementType, "Value":$basePtr,
"ValueRange":$indices, CArg<"bool", "false">:$inbounds,
CArg<"ArrayRef<NamedAttribute>", "{}">:$attributes)>,
- OpBuilder<(ins "Type":$resultType, "Type":$basePtrType, "Value":$basePtr,
+ OpBuilder<(ins "Type":$resultType, "Type":$elementType, "Value":$basePtr,
"ArrayRef<GEPArg>":$indices, CArg<"bool", "false">:$inbounds,
CArg<"ArrayRef<NamedAttribute>", "{}">:$attributes)>,
];
``````````
</details>
https://github.com/llvm/llvm-project/pull/74810
More information about the Mlir-commits
mailing list