[Mlir-commits] [mlir] b4c1421 - [mlir] Apply ClangTidy fix

Adrian Kuegel llvmlistbot at llvm.org
Fri Nov 17 01:56:51 PST 2023


Author: Adrian Kuegel
Date: 2023-11-17T09:56:07Z
New Revision: b4c1421466bd1a8b024d557b259eb4406073be8d

URL: https://github.com/llvm/llvm-project/commit/b4c1421466bd1a8b024d557b259eb4406073be8d
DIFF: https://github.com/llvm/llvm-project/commit/b4c1421466bd1a8b024d557b259eb4406073be8d.diff

LOG: [mlir] Apply ClangTidy fix

Remove redundant return.

Added: 
    

Modified: 
    mlir/lib/Analysis/Presburger/IntegerRelation.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Analysis/Presburger/IntegerRelation.cpp b/mlir/lib/Analysis/Presburger/IntegerRelation.cpp
index 6b26e09158208e4..3724df5abcccaaa 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


        


More information about the Mlir-commits mailing list