Skip to content

Commit 631c5e8

Browse files
authored
[mlir] fix intNEQValue summary (llvm#89029)
Fix the summary of intNEQValue.
1 parent 06eedff commit 631c5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/IR/CommonAttrConstraints.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ class AllAttrOf<list<AttrConstraint> constraints> : AttrConstraint<
755755

756756
class IntNEQValue<int n> : AttrConstraint<
757757
CPred<"::llvm::cast<::mlir::IntegerAttr>($_self).getInt() != " # n>,
758-
"whose minimum value is " # n>;
758+
"whose value is not " # n>;
759759

760760
class IntMinValue<int n> : AttrConstraint<
761761
CPred<"::llvm::cast<::mlir::IntegerAttr>($_self).getInt() >= " # n>,

0 commit comments

Comments
 (0)