diff options
author | Nate Begeman <natebegeman@mac.com> | 2004-08-14 22:16:36 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2004-08-14 22:16:36 +0000 |
commit | ca068e861b7f1184d31f6c8f26f88feb076badf1 (patch) | |
tree | 7f8c3553f2f3b9ca28f584ce31b2a8e44164d2e5 /lib/Target/PowerPC/PowerPCTargetMachine.h | |
parent | ffde1de597c40ebecdd6479756f101197a844b46 (diff) |
Replace PowerPCPEI.cpp with target independant PrologEpilogInserter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.h')
-rw-r--r-- | lib/Target/PowerPC/PowerPCTargetMachine.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.h b/lib/Target/PowerPC/PowerPCTargetMachine.h index d518c2ba72..1f56c08c6d 100644 --- a/lib/Target/PowerPC/PowerPCTargetMachine.h +++ b/lib/Target/PowerPC/PowerPCTargetMachine.h @@ -14,11 +14,12 @@ #ifndef POWERPC_TARGETMACHINE_H #define POWERPC_TARGETMACHINE_H +#include "PowerPCFrameInfo.h" +#include "PowerPCInstrInfo.h" +#include "PowerPCJITInfo.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetFrameInfo.h" #include "llvm/PassManager.h" -#include "PowerPCInstrInfo.h" -#include "PowerPCJITInfo.h" #include <set> namespace llvm { @@ -28,12 +29,12 @@ class IntrinsicLowering; class PowerPCTargetMachine : public TargetMachine { PowerPCInstrInfo InstrInfo; - TargetFrameInfo FrameInfo; + PowerPCFrameInfo FrameInfo; PowerPCJITInfo JITInfo; protected: PowerPCTargetMachine(const std::string &name, IntrinsicLowering *IL, - const TargetData &TD, const TargetFrameInfo &TFI, + const TargetData &TD, const PowerPCFrameInfo &TFI, const PowerPCJITInfo &TJI, bool is64b); public: virtual const PowerPCInstrInfo *getInstrInfo() const { return &InstrInfo; } |