diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-14 16:56:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-14 16:56:32 +0000 |
commit | 8d44b998448960c0f6314ebbcd67bee4db86b9c7 (patch) | |
tree | 9c8e6ad79ea5fe78373236535c22f4f301d35dd2 /llvm/lib/Target/Sparc/Sparc.cpp | |
parent | 1680fb1617681ab0a6d43ab0c94dfd8bde739f08 (diff) | |
download | bcm5719-llvm-8d44b998448960c0f6314ebbcd67bee4db86b9c7.tar.gz bcm5719-llvm-8d44b998448960c0f6314ebbcd67bee4db86b9c7.zip |
Chris seems fond of #include <vector>. Fix these. Also convert use list in
Value to a vector instead of a list.
Move SchedGraph.h & SchedPriorities.h into lib/CodeGen/InstrScheduling
llvm-svn: 572
Diffstat (limited to 'llvm/lib/Target/Sparc/Sparc.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/Sparc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/Sparc/Sparc.cpp b/llvm/lib/Target/Sparc/Sparc.cpp index cf09734e81b..f1be4060be1 100644 --- a/llvm/lib/Target/Sparc/Sparc.cpp +++ b/llvm/lib/Target/Sparc/Sparc.cpp @@ -8,12 +8,16 @@ // 7/15/01 - Vikram Adve - Created //**************************************************************************/ -#include "llvm/CodeGen/Sparc.h" +#include "llvm/Target/Sparc.h" #include "SparcInternals.h" #include "llvm/Method.h" #include "llvm/CodeGen/InstrScheduling.h" #include "llvm/CodeGen/InstrSelection.h" +// allocateSparcTargetMachine - Allocate and return a subclass of TargetMachine +// that implements the Sparc backend. (the llvm/CodeGen/Sparc.h interface) +// +TargetMachine *allocateSparcTargetMachine() { return new UltraSparc(); } //--------------------------------------------------------------------------- @@ -115,7 +119,3 @@ bool UltraSparc::compileMethod(Method *M) { return false; } -// allocateSparcTargetMachine - Allocate and return a subclass of TargetMachine -// that implements the Sparc backend. -// -TargetMachine *allocateSparcTargetMachine() { return new UltraSparc(); } |