Skip to content

Commit 21265f6

Browse files
[mlir][Interfaces] ValueBoundsOpInterface: Fix typo (#87976)
This was likely a copy-and-paste typo.
1 parent 297eca9 commit 21265f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Interfaces/ValueBoundsOpInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ int64_t ValueBoundsConstraintSet::insert(bool isSymbol) {
205205
int64_t ValueBoundsConstraintSet::insert(AffineMap map, ValueDimList operands,
206206
bool isSymbol) {
207207
assert(map.getNumResults() == 1 && "expected affine map with one result");
208-
int64_t pos = insert(/*isSymbol=*/false);
208+
int64_t pos = insert(isSymbol);
209209

210210
// Add map and operands to the constraint set. Dimensions are converted to
211211
// symbols. All operands are added to the worklist (unless they were already

0 commit comments

Comments
 (0)