diff options
author | Dan Gohman <gohman@apple.com> | 2009-02-06 17:12:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-02-06 17:12:10 +0000 |
commit | f4b08b4f6c7037e90b348303395fd877cd819b83 (patch) | |
tree | a61706fe972f17dd63b7097c4d17edcdb0ca865c /llvm/lib/CodeGen/PostRASchedulerList.cpp | |
parent | 1731125787f8e782d789bbd1c4d883d31c676e3f (diff) | |
download | bcm5719-llvm-f4b08b4f6c7037e90b348303395fd877cd819b83.tar.gz bcm5719-llvm-f4b08b4f6c7037e90b348303395fd877cd819b83.zip |
Move ScheduleDAGInstrs.h to be a private header. Front-ends
that used this header to select a scheduling policy should
use SchedulerRegistry.h instead (llvm-gcc and clang were
updated a while ago).
llvm-svn: 63934
Diffstat (limited to 'llvm/lib/CodeGen/PostRASchedulerList.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PostRASchedulerList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PostRASchedulerList.cpp b/llvm/lib/CodeGen/PostRASchedulerList.cpp index 0cb3b03f321..46f89f2d341 100644 --- a/llvm/lib/CodeGen/PostRASchedulerList.cpp +++ b/llvm/lib/CodeGen/PostRASchedulerList.cpp @@ -19,8 +19,8 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "post-RA-sched" +#include "ScheduleDAGInstrs.h" #include "llvm/CodeGen/Passes.h" -#include "llvm/CodeGen/ScheduleDAGInstrs.h" #include "llvm/CodeGen/LatencyPriorityQueue.h" #include "llvm/CodeGen/SchedulerRegistry.h" #include "llvm/CodeGen/MachineDominators.h" |