diff options
Diffstat (limited to 'mlir/lib/IR/IntegerSet.cpp')
-rw-r--r-- | mlir/lib/IR/IntegerSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/IR/IntegerSet.cpp b/mlir/lib/IR/IntegerSet.cpp index 139ca504b58..e5715877649 100644 --- a/mlir/lib/IR/IntegerSet.cpp +++ b/mlir/lib/IR/IntegerSet.cpp @@ -45,7 +45,7 @@ unsigned IntegerSet::getNumInequalities() const { } bool IntegerSet::isEmptyIntegerSet() const { - // This will only work if uniqui'ing is on. + // This will only work if uniquing is on. static_assert(kUniquingThreshold >= 1, "uniquing threshold should be at least one"); return *this == getEmptySet(set->dimCount, set->symbolCount, getContext()); |