Interpreter cleanups:
[oota-llvm.git] / include / llvm / ExecutionEngine / ExecutionEngine.h
index a0e54c14508a23e6939e07e0e2dbb95bd533460d..7dc2c0a42ce16ac2b7d0591527fbdee0f47fd34e 100644 (file)
@@ -49,7 +49,7 @@ public:
                   const char ** envp) = 0;
 
   static ExecutionEngine *create (Module *M, bool ForceInterpreter,
-                                 bool DebugMode, bool TraceMode);
+                                 bool TraceMode);
 
   /// createJIT - Create an return a new JIT compiler if there is one available
   /// for the current target.  Otherwise it returns null.
@@ -58,8 +58,7 @@ public:
 
   /// createInterpreter - Create a new interpreter object.  This can never fail.
   ///
-  static ExecutionEngine *createInterpreter(Module *M, bool DebugMode,
-                                            bool TraceMode);
+  static ExecutionEngine *createInterpreter(Module *M, bool TraceMode);
 
   void addGlobalMapping(const Function *F, void *Addr) {
     void *&CurVal = GlobalAddress[(const GlobalValue*)F];