diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-23 05:28:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-23 05:28:02 +0000 |
commit | ef98691ca3a3b765b18b24ec9e01000e9e1b6bd6 (patch) | |
tree | 1433c3a7b7c999942896f2e0dc10dace137755b9 /lib/ExecutionEngine/JIT/TargetSelect.cpp | |
parent | 726c1ef2bdd72975f41e3188371bb7d6f40401be (diff) |
remove always-null IntrinsicLowering argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/TargetSelect.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/TargetSelect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/TargetSelect.cpp b/lib/ExecutionEngine/JIT/TargetSelect.cpp index 05e86e650a..ef9c8f549e 100644 --- a/lib/ExecutionEngine/JIT/TargetSelect.cpp +++ b/lib/ExecutionEngine/JIT/TargetSelect.cpp @@ -61,7 +61,7 @@ ExecutionEngine *JIT::create(ModuleProvider *MP) { } // Allocate a target... - TargetMachine *Target = MArch->CtorFn(*MP->getModule(), 0, FeaturesStr); + TargetMachine *Target = MArch->CtorFn(*MP->getModule(), FeaturesStr); assert(Target && "Could not allocate target machine!"); // If the target supports JIT code generation, return a new JIT now. |