[Mlir-commits] [mlir] 8f8c89f - [mlir] Remove spurious debug guard
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Dec 23 11:55:53 PST 2021
Author: Mogball
Date: 2021-12-23T11:55:37-08:00
New Revision: 8f8c89f3cd74fd7f165f0c43b515519243d6cc95
URL: https://github.com/llvm/llvm-project/commit/8f8c89f3cd74fd7f165f0c43b515519243d6cc95
DIFF: https://github.com/llvm/llvm-project/commit/8f8c89f3cd74fd7f165f0c43b515519243d6cc95.diff
LOG: [mlir] Remove spurious debug guard
Added:
Modified:
mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp b/mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
index e9ea661cb68e9..7fd46c711db01 100644
--- a/mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
+++ b/mlir/lib/Transforms/Utils/GreedyPatternRewriteDriver.cpp
@@ -255,11 +255,6 @@ bool GreedyPatternRewriteDriver::simplify(MutableArrayRef<Region> regions) {
#else
LogicalResult matchResult = matcher.matchAndRewrite(op, *this);
#endif
-
-
-#ifndef NDEBUG
-#endif
-
changed |= succeeded(matchResult);
}
More information about the Mlir-commits
mailing list