diff options
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp index 57d7b89d8f..9a2dc1aacb 100644 --- a/lib/ExecutionEngine/JIT/JIT.cpp +++ b/lib/ExecutionEngine/JIT/JIT.cpp @@ -41,11 +41,10 @@ namespace { #endif /* NO_JITS_ENABLED */ } -/// createJIT - Create an return a new JIT compiler if there is one available -/// for the current target. Otherwise it returns null. +/// create - Create an return a new JIT compiler if there is one available +/// for the current target. Otherwise, return null. /// -ExecutionEngine *ExecutionEngine::createJIT(Module *M) { - +ExecutionEngine *VM::create(Module *M) { TargetMachine* (*TargetMachineAllocator)(const Module &) = 0; // Allow a command-line switch to override what *should* be the default target |