diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/VM.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/VM.h | 5 |
1 files changed, 5 insertions, 0 deletions
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, |