[llvm] r273618 - MachineScheduler: Followup to debug message changes

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 14:43:29 PDT 2016


Author: matze
Date: Thu Jun 23 16:43:28 2016
New Revision: 273618

URL: http://llvm.org/viewvc/llvm-project?rev=273618&view=rev
Log:
MachineScheduler: Followup to debug message changes

Do not dump intermediate state of the pending queue anymore now that we
always dump the final state before picking.

Modified:
    llvm/trunk/lib/CodeGen/MachineScheduler.cpp

Modified: llvm/trunk/lib/CodeGen/MachineScheduler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineScheduler.cpp?rev=273618&r1=273617&r2=273618&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineScheduler.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineScheduler.cpp Thu Jun 23 16:43:28 2016
@@ -2218,7 +2218,6 @@ void SchedBoundary::releasePending() {
     Pending.remove(Pending.begin()+i);
     --i; --e;
   }
-  DEBUG(if (!Pending.empty()) Pending.dump());
   CheckPending = false;
 }
 




More information about the llvm-commits mailing list