[llvm] r262939 - Invoke DAG postprocessing in the post-RA scheduler

Krzysztof Parzyszek via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 8 08:54:20 PST 2016


Author: kparzysz
Date: Tue Mar  8 10:54:20 2016
New Revision: 262939

URL: http://llvm.org/viewvc/llvm-project?rev=262939&view=rev
Log:
Invoke DAG postprocessing in the post-RA scheduler

This was inadvertently omitted from r262774, which added the mutation
interface.

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

Modified: llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp?rev=262939&r1=262938&r2=262939&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp (original)
+++ llvm/trunk/lib/CodeGen/PostRASchedulerList.cpp Tue Mar  8 10:54:20 2016
@@ -405,6 +405,8 @@ void SchedulePostRATDList::schedule() {
     }
   }
 
+  postprocessDAG();
+
   DEBUG(dbgs() << "********** List Scheduling **********\n");
   DEBUG(
     for (const SUnit &SU : SUnits) {




More information about the llvm-commits mailing list