[Mlir-commits] [mlir] [mlir] fix intNEQValue summary (PR #89029)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Apr 17 00:04:30 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir-ods

Author: MbjYjbpivj (MbjYjbpivj)

<details>
<summary>Changes</summary>

Fix the summary of intNEQValue.

---
Full diff: https://github.com/llvm/llvm-project/pull/89029.diff


1 Files Affected:

- (modified) mlir/include/mlir/IR/CommonAttrConstraints.td (+1-1) 


``````````diff
diff --git a/mlir/include/mlir/IR/CommonAttrConstraints.td b/mlir/include/mlir/IR/CommonAttrConstraints.td
index 0312ac7ec1d8df..0d69bb0717a599 100644
--- a/mlir/include/mlir/IR/CommonAttrConstraints.td
+++ b/mlir/include/mlir/IR/CommonAttrConstraints.td
@@ -755,7 +755,7 @@ class AllAttrOf<list<AttrConstraint> constraints> : AttrConstraint<
 
 class IntNEQValue<int n> : AttrConstraint<
     CPred<"::llvm::cast<::mlir::IntegerAttr>($_self).getInt() != " # n>,
-    "whose minimum value is " # n>;
+    "whose value is not " # n>;
 
 class IntMinValue<int n> : AttrConstraint<
     CPred<"::llvm::cast<::mlir::IntegerAttr>($_self).getInt() >= " # n>,

``````````

</details>


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


More information about the Mlir-commits mailing list