diff options
Diffstat (limited to 'lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | lib/ExecutionEngine/JIT/JIT.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h index 76d2b7a917..53e8738bb8 100644 --- a/lib/ExecutionEngine/JIT/JIT.h +++ b/lib/ExecutionEngine/JIT/JIT.h @@ -50,8 +50,8 @@ public: /// run - Start execution with the specified function and arguments. /// - virtual GenericValue run(Function *F, - const std::vector<GenericValue> &ArgValues); + virtual GenericValue runFunction(Function *F, + const std::vector<GenericValue> &ArgValues); /// getPointerToNamedFunction - This method returns the address of the /// specified function by using the dlsym function call. As such it is only @@ -64,11 +64,6 @@ public: // static void CompilationCallback(); - /// runAtExitHandlers - Before exiting the program, at_exit functions must be - /// called. This method calls them. - /// - static void runAtExitHandlers(); - /// getPointerToFunction - This returns the address of the specified function, /// compiling it if necessary. /// |