[PATCH] D132895: [ModuloScheduler] Fix missing LLVM_DEBUG
David Penry via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 30 09:21:06 PDT 2022
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9aca7b02170c: [ModuloScheduler] Fix missing LLVM_DEBUG (authored by dpenry).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132895/new/
https://reviews.llvm.org/D132895
Files:
llvm/lib/CodeGen/MachinePipeliner.cpp
Index: llvm/lib/CodeGen/MachinePipeliner.cpp
===================================================================
--- llvm/lib/CodeGen/MachinePipeliner.cpp
+++ llvm/lib/CodeGen/MachinePipeliner.cpp
@@ -2101,7 +2101,7 @@
if (scheduleFound) {
scheduleFound = LoopPipelinerInfo->shouldUseSchedule(*this, Schedule);
if (!scheduleFound)
- dbgs() << "Target rejected schedule\n";
+ LLVM_DEBUG(dbgs() << "Target rejected schedule\n");
}
if (scheduleFound) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132895.456697.patch
Type: text/x-patch
Size: 481 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220830/94683a9e/attachment.bin>
More information about the llvm-commits
mailing list