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

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Apr 17 05:15:35 PDT 2024


Author: MbjYjbpivj
Date: 2024-04-17T14:15:30+02:00
New Revision: 631c5e818ef8bb0f61fd3bb44cc4449be2142e2b

URL: https://github.com/llvm/llvm-project/commit/631c5e818ef8bb0f61fd3bb44cc4449be2142e2b
DIFF: https://github.com/llvm/llvm-project/commit/631c5e818ef8bb0f61fd3bb44cc4449be2142e2b.diff

LOG: [mlir] fix intNEQValue summary (#89029)

Fix the summary of intNEQValue.

Added: 
    

Modified: 
    mlir/include/mlir/IR/CommonAttrConstraints.td

Removed: 
    


################################################################################
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>,


        


More information about the Mlir-commits mailing list