diff options
| author | Adrian Kuegel <akuegel@google.com> | 2023-11-17 09:56:07 +0000 |
|---|---|---|
| committer | Adrian Kuegel <akuegel@google.com> | 2023-11-17 09:56:07 +0000 |
| commit | b4c1421466bd1a8b024d557b259eb4406073be8d (patch) | |
| tree | 825bf9ce86ab84577bf91e94b1a181c02f7acf62 | |
| parent | 8775232c49cde288c429e27dd0f4f492fbb0cefa (diff) | |
| download | llvm-b4c1421466bd1a8b024d557b259eb4406073be8d.zip llvm-b4c1421466bd1a8b024d557b259eb4406073be8d.tar.gz llvm-b4c1421466bd1a8b024d557b259eb4406073be8d.tar.bz2 | |
[mlir] Apply ClangTidy fix
Remove redundant return.
| -rw-r--r-- | mlir/lib/Analysis/Presburger/IntegerRelation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mlir/lib/Analysis/Presburger/IntegerRelation.cpp b/mlir/lib/Analysis/Presburger/IntegerRelation.cpp index 6b26e09..3724df5 100644 --- a/mlir/lib/Analysis/Presburger/IntegerRelation.cpp +++ b/mlir/lib/Analysis/Presburger/IntegerRelation.cpp @@ -1351,7 +1351,6 @@ void IntegerRelation::simplify() { changed |= removeDuplicateConstraints(); } // Current set is not empty. - return; } /// Removes local variables using equalities. Each equality is checked if it |
