diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-10-26 19:41:00 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-10-26 19:41:00 +0000 |
commit | ada0ef86d98df4ac36808e4a0f0098250bf1a842 (patch) | |
tree | 5135e357901196ba19d356ca63cf73665e7163c8 /lib/CodeGen/PostRASchedulerList.cpp | |
parent | 348777110a960f0e017025dd5141cb29472c3984 (diff) |
Define virtual destructor in *.cpp file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85146 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PostRASchedulerList.cpp')
-rw-r--r-- | lib/CodeGen/PostRASchedulerList.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp index 4ee97e79b5..8fe20876bc 100644 --- a/lib/CodeGen/PostRASchedulerList.cpp +++ b/lib/CodeGen/PostRASchedulerList.cpp @@ -24,6 +24,7 @@ #include "ExactHazardRecognizer.h" #include "SimpleHazardRecognizer.h" #include "ScheduleDAGInstrs.h" +#include "llvm/CodeGen/AntiDepBreaker.h" #include "llvm/CodeGen/Passes.h" #include "llvm/CodeGen/LatencyPriorityQueue.h" #include "llvm/CodeGen/SchedulerRegistry.h" @@ -79,6 +80,8 @@ DebugMod("postra-sched-debugmod", cl::desc("Debug control MBBs that are scheduled"), cl::init(0), cl::Hidden); +AntiDepBreaker::~AntiDepBreaker() { } + namespace { class PostRAScheduler : public MachineFunctionPass { AliasAnalysis *AA; |