diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-23 05:43:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-23 05:43:16 +0000 |
commit | bc641b9d8b5ecafe0137c1a49f4777608981d81b (patch) | |
tree | 8e5e67134c5d36215f4264d7fa9f46c8eb70a843 /lib/Target/Sparc/SparcTargetMachine.h | |
parent | 475c010366da9788b5f87d6a453d5eed6053ef46 (diff) |
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/Sparc/SparcTargetMachine.h')
-rw-r--r-- | lib/Target/Sparc/SparcTargetMachine.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Target/Sparc/SparcTargetMachine.h b/lib/Target/Sparc/SparcTargetMachine.h index 196ad753d2..0cad652f71 100644 --- a/lib/Target/Sparc/SparcTargetMachine.h +++ b/lib/Target/Sparc/SparcTargetMachine.h @@ -22,7 +22,6 @@ namespace llvm { -class IntrinsicLowering; class Module; class SparcTargetMachine : public TargetMachine { @@ -30,8 +29,7 @@ class SparcTargetMachine : public TargetMachine { SparcInstrInfo InstrInfo; TargetFrameInfo FrameInfo; public: - SparcTargetMachine(const Module &M, IntrinsicLowering *IL, - const std::string &FS); + SparcTargetMachine(const Module &M, const std::string &FS); virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; } virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |