aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-09-05 06:10:50 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-09-05 06:10:50 +0000
commitf3c333e36f576a846a6023da4253eaa8577709ff (patch)
tree17168fdf00ed19db19f428ecbbf4b9accc78f013 /include
parent8e2185ea07d2c8335b9833c6c01b42acf0aba154 (diff)
downloadexternal_llvm-f3c333e36f576a846a6023da4253eaa8577709ff.zip
external_llvm-f3c333e36f576a846a6023da4253eaa8577709ff.tar.gz
external_llvm-f3c333e36f576a846a6023da4253eaa8577709ff.tar.bz2
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.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 7dc2c0a..89a2643 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!");