diff options
author | Guochun Shi <gshi1@uiuc.edu> | 2003-04-06 23:56:19 +0000 |
---|---|---|
committer | Guochun Shi <gshi1@uiuc.edu> | 2003-04-06 23:56:19 +0000 |
commit | 6fbe5fbce1f3ff901eb3685290e19f5973ff588a (patch) | |
tree | 5d7d1db0b4bff8eb368815ee710182fbf8160dc3 /lib/CodeGen/ModuloScheduling/ModuloScheduling.h | |
parent | f9a88b684d8ca368ad51695c61a3580f4700da52 (diff) |
change the include file names and some class names to make it compile
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ModuloScheduling/ModuloScheduling.h')
-rw-r--r-- | lib/CodeGen/ModuloScheduling/ModuloScheduling.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h b/lib/CodeGen/ModuloScheduling/ModuloScheduling.h index 9f9fcaa791..713ad22ab6 100644 --- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.h +++ b/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(); |