diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/VM.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/VM.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/VM.h b/llvm/lib/ExecutionEngine/JIT/VM.h index b4a1e0fa121..e886a194122 100644 --- a/llvm/lib/ExecutionEngine/JIT/VM.h +++ b/llvm/lib/ExecutionEngine/JIT/VM.h @@ -29,7 +29,8 @@ public: /// run - Start execution with the specified function and arguments. /// virtual int run(const std::string &FnName, - const std::vector<std::string> &Args); + const std::vector<std::string> &Args, + const char ** envp); /// getPointerToNamedFunction - This method returns the address of the /// specified function by using the dlsym function call. As such it is only |