summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCTargetMachine.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-23 05:43:16 +0000
committerChris Lattner <sabre@nondot.org>2006-03-23 05:43:16 +0000
commitbc641b9d8b5ecafe0137c1a49f4777608981d81b (patch)
tree8e5e67134c5d36215f4264d7fa9f46c8eb70a843 /lib/Target/PowerPC/PPCTargetMachine.h
parent475c010366da9788b5f87d6a453d5eed6053ef46 (diff)
downloadllvm-bc641b9d8b5ecafe0137c1a49f4777608981d81b.tar.gz
llvm-bc641b9d8b5ecafe0137c1a49f4777608981d81b.tar.bz2
llvm-bc641b9d8b5ecafe0137c1a49f4777608981d81b.tar.xz
Eliminate IntrinsicLowering from TargetMachine.
Make the CBE and V9 backends create their own, since they're the only ones that use it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.h')
-rw-r--r--lib/Target/PowerPC/PPCTargetMachine.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.h b/lib/Target/PowerPC/PPCTargetMachine.h
index 4038a2a84f..3b2e481c7b 100644
--- a/lib/Target/PowerPC/PPCTargetMachine.h
+++ b/lib/Target/PowerPC/PPCTargetMachine.h
@@ -23,9 +23,7 @@
namespace llvm {
class PassManager;
-class IntrinsicLowering;
class GlobalValue;
-class IntrinsicLowering;
class PPCTargetMachine : public TargetMachine {
PPCInstrInfo InstrInfo;
@@ -35,8 +33,7 @@ class PPCTargetMachine : public TargetMachine {
PPCTargetLowering TLInfo;
InstrItineraryData InstrItins;
public:
- PPCTargetMachine(const Module &M, IntrinsicLowering *IL,
- const std::string &FS);
+ PPCTargetMachine(const Module &M, const std::string &FS);
virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }