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/Alpha/AlphaTargetMachine.cpp | |
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/Alpha/AlphaTargetMachine.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaTargetMachine.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/Alpha/AlphaTargetMachine.cpp b/lib/Target/Alpha/AlphaTargetMachine.cpp index dd593d1c0b..2daaab2d6d 100644 --- a/lib/Target/Alpha/AlphaTargetMachine.cpp +++ b/lib/Target/Alpha/AlphaTargetMachine.cpp @@ -53,9 +53,8 @@ unsigned AlphaTargetMachine::getJITMatchQuality() { #endif } -AlphaTargetMachine::AlphaTargetMachine(const Module &M, IntrinsicLowering *IL, - const std::string &FS) - : TargetMachine("alpha", IL, true), +AlphaTargetMachine::AlphaTargetMachine(const Module &M, const std::string &FS) + : TargetMachine("alpha", true), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), JITInfo(*this), Subtarget(M, FS) |