[llvm-commits] CVS: llvm/tools/lli/ExecutionEngine.h

Brian Gaeke gaeke at cs.uiuc.edu
Fri Sep 5 01:12:01 PDT 2003


Changes in directory llvm/tools/lli:

ExecutionEngine.h updated: 1.10 -> 1.11

---
Log message:

Zap some more unused static method decls


---
Diffs of the changes:

Index: llvm/tools/lli/ExecutionEngine.h
diff -u llvm/tools/lli/ExecutionEngine.h:1.10 llvm/tools/lli/ExecutionEngine.h:1.11
--- llvm/tools/lli/ExecutionEngine.h:1.10	Thu Sep  4 17:21:22 2003
+++ llvm/tools/lli/ExecutionEngine.h	Fri Sep  5 01:10:50 2003
@@ -51,15 +51,6 @@
   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!");





More information about the llvm-commits mailing list