remove always-null IntrinsicLowering argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26971 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2006-03-23 05:28:02 +00:00
parent 726c1ef2bd
commit ef98691ca3
4 changed files with 7 additions and 14 deletions

View File

@@ -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.