diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 02:28:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 02:28:39 +0000 |
commit | 9668c8c8dbb95c649b2d0284ca5ff7640fb3f2b3 (patch) | |
tree | d8413d2682770e9e480e011aab80c1dd3cd8965c | |
parent | 6fc6ab41fe69e35386fc3a1b5d7dd2283f6e02c8 (diff) | |
download | bcm5719-llvm-9668c8c8dbb95c649b2d0284ca5ff7640fb3f2b3.tar.gz bcm5719-llvm-9668c8c8dbb95c649b2d0284ca5ff7640fb3f2b3.zip |
Add #includes now that MachineInstr.h doesn't include llvm/Target/MachineInstrInfo.h
llvm-svn: 4327
-rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedGraph.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/MachineInstrAnnot.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp index cc3e5b5ed4a..4bcdf47bd9e 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp +++ b/llvm/lib/CodeGen/InstrSched/SchedGraph.cpp @@ -12,6 +12,7 @@ #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/Target/MachineRegInfo.h" #include "llvm/Target/TargetMachine.h" +#include "llvm/Target/MachineInstrInfo.h" #include "llvm/Function.h" #include "llvm/iOther.h" #include "Support/StringExtras.h" diff --git a/llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp b/llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp index b2f5b22f4c5..242d1dda5b3 100644 --- a/llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp +++ b/llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/InstrForest.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/MachineRegInfo.h" +#include "llvm/Target/MachineInstrInfo.h" #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/Type.h" diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index df633c65116..cd439e3aee5 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -4,6 +4,7 @@ #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Value.h" +#include "llvm/Target/MachineInstrInfo.h" // FIXME: shouldn't need this! using std::cerr; diff --git a/llvm/lib/CodeGen/MachineInstrAnnot.cpp b/llvm/lib/CodeGen/MachineInstrAnnot.cpp index ef064450ed0..b4809a6be80 100644 --- a/llvm/lib/CodeGen/MachineInstrAnnot.cpp +++ b/llvm/lib/CodeGen/MachineInstrAnnot.cpp @@ -8,6 +8,7 @@ #include "llvm/CodeGen/MachineInstrAnnot.h" #include "llvm/Annotation.h" #include "llvm/iOther.h" +#include "llvm/Type.h" AnnotationID CallArgsDescriptor::AID(AnnotationManager:: getID("CodeGen::CallArgsDescriptor")); diff --git a/llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp b/llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp index 2458c987b4e..31bd134e1b0 100644 --- a/llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp +++ b/llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.cpp @@ -10,6 +10,7 @@ #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/Target/TargetMachine.h" +#include "llvm/Target/MachineInstrInfo.h" #include "llvm/Function.h" #include "Support/SetOperations.h" using std::cerr; diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 85c55d6fbc7..4dcd44f4588 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -14,6 +14,7 @@ #include "llvm/Analysis/LoopInfo.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/MachineFrameInfo.h" +#include "llvm/Target/MachineInstrInfo.h" #include "llvm/Function.h" #include "llvm/Type.h" #include "llvm/iOther.h" |