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/IA64/IA64TargetMachine.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/IA64/IA64TargetMachine.cpp')
-rw-r--r-- | lib/Target/IA64/IA64TargetMachine.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Target/IA64/IA64TargetMachine.cpp b/lib/Target/IA64/IA64TargetMachine.cpp index 9757b991b6..4c7af41479 100644 --- a/lib/Target/IA64/IA64TargetMachine.cpp +++ b/lib/Target/IA64/IA64TargetMachine.cpp @@ -15,7 +15,6 @@ #include "IA64.h" #include "llvm/Module.h" #include "llvm/PassManager.h" -#include "llvm/CodeGen/IntrinsicLowering.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/Passes.h" #include "llvm/Target/TargetOptions.h" @@ -76,9 +75,8 @@ unsigned IA64TargetMachine::getModuleMatchQuality(const Module &M) { /// IA64TargetMachine ctor - Create an LP64 architecture model /// -IA64TargetMachine::IA64TargetMachine(const Module &M, IntrinsicLowering *IL, - const std::string &FS) - : TargetMachine("IA64", IL, true), +IA64TargetMachine::IA64TargetMachine(const Module &M, const std::string &FS) + : TargetMachine("IA64", true), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0), TLInfo(*this) { // FIXME? check this stuff } |