Zap some more unused static method decls
authorBrian Gaeke <gaeke@uiuc.edu>
Fri, 5 Sep 2003 06:10:50 +0000 (06:10 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Fri, 5 Sep 2003 06:10:50 +0000 (06:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8364 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/ExecutionEngine.h

index 7dc2c0a42ce16ac2b7d0591527fbdee0f47fd34e..89a264333a4d9aafa15eb6d73bdf7260f1ffcef7 100644 (file)
@@ -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!");