From: Krzysztof Parzyszek Date: Tue, 8 Mar 2016 16:54:20 +0000 (+0000) Subject: Invoke DAG postprocessing in the post-RA scheduler X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd99e364e312467ba967580c19b174bfac15664a;p=platform%2Fupstream%2Fllvm.git Invoke DAG postprocessing in the post-RA scheduler This was inadvertently omitted from r262774, which added the mutation interface. llvm-svn: 262939 --- 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) {