From 60dd627d08df00d69e9cec0065674110e2c70b78 Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Tue, 8 Mar 2016 16:54:20 +0000 Subject: [PATCH] Invoke DAG postprocessing in the post-RA scheduler This was inadvertently omitted from r262774, which added the mutation interface. llvm-svn: 262939 --- lib/CodeGen/PostRASchedulerList.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp index 4266dec82d7..bbb4f296434 100644 --- a/lib/CodeGen/PostRASchedulerList.cpp +++ b/lib/CodeGen/PostRASchedulerList.cpp @@ -405,6 +405,8 @@ void SchedulePostRATDList::schedule() { } } + postprocessDAG(); + DEBUG(dbgs() << "********** List Scheduling **********\n"); DEBUG( for (const SUnit &SU : SUnits) {