From cd99e364e312467ba967580c19b174bfac15664a 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 --- llvm/lib/CodeGen/PostRASchedulerList.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/CodeGen/PostRASchedulerList.cpp b/llvm/lib/CodeGen/PostRASchedulerList.cpp index 4266dec..bbb4f29 100644 --- a/llvm/lib/CodeGen/PostRASchedulerList.cpp +++ b/llvm/lib/CodeGen/PostRASchedulerList.cpp @@ -405,6 +405,8 @@ void SchedulePostRATDList::schedule() { } } + postprocessDAG(); + DEBUG(dbgs() << "********** List Scheduling **********\n"); DEBUG( for (const SUnit &SU : SUnits) { -- 2.7.4