[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Mar 22 21:28:14 PST 2006
Changes in directory llvm/lib/ExecutionEngine/JIT:
TargetSelect.cpp updated: 1.11 -> 1.12
---
Log message:
remove always-null IntrinsicLowering argument.
---
Diffs of the changes: (+1 -1)
TargetSelect.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
diff -u llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.11 llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.12
--- llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.11 Wed Mar 22 23:22:51 2006
+++ llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp Wed Mar 22 23:28:02 2006
@@ -61,7 +61,7 @@
}
// 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.
More information about the llvm-commits
mailing list