diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 06:10:50 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 06:10:50 +0000 |
commit | f3c333e36f576a846a6023da4253eaa8577709ff (patch) | |
tree | 17168fdf00ed19db19f428ecbbf4b9accc78f013 /include | |
parent | 8e2185ea07d2c8335b9833c6c01b42acf0aba154 (diff) |
Zap some more unused static method decls
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8364 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index 7dc2c0a42c..89a264333a 100644 --- a/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -51,15 +51,6 @@ public: static ExecutionEngine *create (Module *M, bool ForceInterpreter, bool TraceMode); - /// createJIT - Create an return a new JIT compiler if there is one available - /// for the current target. Otherwise it returns null. - /// - static ExecutionEngine *createJIT(Module *M); - - /// createInterpreter - Create a new interpreter object. This can never fail. - /// - static ExecutionEngine *createInterpreter(Module *M, bool TraceMode); - void addGlobalMapping(const Function *F, void *Addr) { void *&CurVal = GlobalAddress[(const GlobalValue*)F]; assert(CurVal == 0 && "GlobalMapping already established!"); |