aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
diff options
context:
space:
mode:
authorGuochun Shi <gshi1@uiuc.edu>2003-04-06 23:56:19 +0000
committerGuochun Shi <gshi1@uiuc.edu>2003-04-06 23:56:19 +0000
commitb250dc6909a6291e8fcd51947535ccceb052972a (patch)
treeca8e7f916c9471544606fb8043a27888496a6909 /llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
parentd31837154de99e8fda9bec80b47b51cf7a3e32e8 (diff)
downloadllvm-b250dc6909a6291e8fcd51947535ccceb052972a.zip
llvm-b250dc6909a6291e8fcd51947535ccceb052972a.tar.gz
llvm-b250dc6909a6291e8fcd51947535ccceb052972a.tar.bz2
change the include file names and some class names to make it compile
llvm-svn: 5764
Diffstat (limited to 'llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h')
-rw-r--r--llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
index 9f9fcaa..713ad22 100644
--- a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
+++ b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.h
@@ -11,6 +11,9 @@
#include "ModuloSchedGraph.h"
#include <iostream>
+#include <vector>
+
+using std::vector;
class ModuloScheduling:NonCopyable {
private:
@@ -82,7 +85,7 @@ public:
//*******************internel functions*******************************
private:
//clear memory from the last round and initialize if necessary
- void clearInitMem(const MachineSchedInfo& );
+ void clearInitMem(const TargetSchedInfo& );
//compute schedule and coreSchedule with the current II
bool computeSchedule();