diff options
author | Christian Sigg <csigg@google.com> | 2019-10-04 04:37:14 -0700 |
---|---|---|
committer | A. Unique TensorFlower <gardener@tensorflow.org> | 2019-10-04 04:37:53 -0700 |
commit | 85dcaf19c721c4c745cd4fa3972aa9093acd69d3 (patch) | |
tree | c311b0c28846249bdfaa6f124ceda4b79d5757be /mlir/lib/IR/IntegerSet.cpp | |
parent | 5830f71a45df33e24c864bea4c5de070be47b488 (diff) | |
download | bcm5719-llvm-85dcaf19c721c4c745cd4fa3972aa9093acd69d3.tar.gz bcm5719-llvm-85dcaf19c721c4c745cd4fa3972aa9093acd69d3.zip |
Fix typos, NFC.
PiperOrigin-RevId: 272851237
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()); |