Skip to content

Commit bf50d70

Browse files
committed
remove debug prints
1 parent fa9a1b4 commit bf50d70

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mlir/lib/Rewrite/ByteCode.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,6 @@ void ByteCodeExecutor::executeApplyConstraint(PatternRewriter &rewriter) {
14491449
LogicalResult rewriteResult = constraintFn(rewriter, args);
14501450
// Depending on the constraint jump to the proper destination.
14511451
ByteCodeField isNegated = read();
1452-
llvm::dbgs() << " * isNegated: " << isNegated;
14531452
selectJump(isNegated != succeeded(rewriteResult));
14541453
} else {
14551454
const PDLRewriteFunction &constraintFn = rewriteFunctions[fun_idx];
@@ -1478,7 +1477,6 @@ void ByteCodeExecutor::executeApplyConstraint(PatternRewriter &rewriter) {
14781477
}
14791478
// Depending on the constraint jump to the proper destination.
14801479
ByteCodeField isNegated = read();
1481-
llvm::dbgs() << " * isNegated: " << isNegated;
14821480
selectJump(isNegated != succeeded(rewriteResult));
14831481
}
14841482
}

0 commit comments

Comments
 (0)