Skip to content

Commit c5b10f3

Browse files
committed
[Matrix] Use print instead of dump for matrix-print-after-transpose-opt
We should be able to use this option even if LLVM_ENABLE_DUMP is not on. (should fix the bots too)
1 parent b484256 commit c5b10f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/LowerMatrixIntrinsics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ class LowerMatrixIntrinsics {
893893
optimizeTransposes();
894894
if (PrintAfterTransposeOpt) {
895895
dbgs() << "Dump after matrix transpose optimization:\n";
896-
Func.dump();
896+
Func.print(dbgs());
897897
}
898898
}
899899

0 commit comments

Comments
 (0)