summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/JIT.cpp7
-rw-r--r--llvm/lib/ExecutionEngine/JIT/VM.h5
2 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp
index 57d7b89d8f2..9a2dc1aacb7 100644
--- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/llvm/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
diff --git a/llvm/lib/ExecutionEngine/JIT/VM.h b/llvm/lib/ExecutionEngine/JIT/VM.h
index e886a194122..764afcf66fe 100644
--- a/llvm/lib/ExecutionEngine/JIT/VM.h
+++ b/llvm/lib/ExecutionEngine/JIT/VM.h
@@ -26,6 +26,11 @@ public:
VM(Module *M, TargetMachine *tm);
~VM();
+ /// create - Create an return a new JIT compiler if there is one available
+ /// for the current target. Otherwise, return null.
+ ///
+ static ExecutionEngine *create(Module *M);
+
/// run - Start execution with the specified function and arguments.
///
virtual int run(const std::string &FnName,
OpenPOWER on IntegriCloud