Skip to content

Commit e84dcba

Browse files
committed
[MLIR] Remove leftover debug print code
This was incorrectly left and merged with #160615
1 parent 3763712 commit e84dcba

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

mlir/lib/IR/Builders.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -489,13 +489,6 @@ OpBuilder::tryFold(Operation *op, SmallVectorImpl<Value> &results,
489489
SmallVector<OpFoldResult, 4> foldResults;
490490
LDBG() << "Trying to fold: "
491491
<< OpWithFlags(op, OpPrintingFlags().skipRegions());
492-
if (op->getName().getStringRef() == "vector.extract") {
493-
Operation *parent = op->getParentOp();
494-
while (parent && parent->getName().getStringRef() != "spirv.func")
495-
parent = parent->getParentOp();
496-
if (parent)
497-
parent->dump();
498-
}
499492
if (failed(op->fold(foldResults)))
500493
return cleanupFailure();
501494

0 commit comments

Comments
 (0)