diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-30 20:13:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-30 20:13:59 +0000 |
commit | 797c1366070b8c5f9a409fe39811c99f82af6261 (patch) | |
tree | c2e4ad3b3ae74240b7075e357ef2444be83d3c58 /lib/Target/SparcV9/RegAlloc | |
parent | be34f0d243a981fe05d6239d4ee6ed89bec09d49 (diff) | |
download | external_llvm-797c1366070b8c5f9a409fe39811c99f82af6261.zip external_llvm-797c1366070b8c5f9a409fe39811c99f82af6261.tar.gz external_llvm-797c1366070b8c5f9a409fe39811c99f82af6261.tar.bz2 |
include passes.h which defines the interface this file exposes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8793 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp index 0c55219..616b012 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp @@ -17,22 +17,22 @@ #include "RegAllocCommon.h" #include "RegClass.h" #include "IGNode.h" +#include "llvm/CodeGen/FunctionLiveVarInfo.h" +#include "llvm/CodeGen/InstrSelection.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrAnnot.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFunctionInfo.h" -#include "llvm/CodeGen/FunctionLiveVarInfo.h" -#include "llvm/CodeGen/InstrSelection.h" +#include "llvm/CodeGen/Passes.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Target/TargetInstrInfo.h" -#include "llvm/Function.h" #include "llvm/Type.h" #include "llvm/iOther.h" #include "llvm/DerivedTypes.h" #include "llvm/Constants.h" -#include "llvm/Support/InstIterator.h" #include "llvm/Module.h" +#include "llvm/Support/InstIterator.h" #include "Support/STLExtras.h" #include "Support/SetOperations.h" #include "Support/CommandLine.h" |