From f58815e161c8c91075dd1af7a277314190ebc286 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Thu, 4 Sep 2003 22:21:24 +0000 Subject: Interpreter cleanups: Get rid of support for DebugMode (make it always off). Mung some comments. Get rid of interpreter's PROFILE_STRUCTURE_FIELDS and PerformExitStuff which have been disabled forever. Get rid of -abort-on-exception (make it always on). Get rid of user interaction stuff (debug mode innards). Simplify Interpreter's callMainFunction(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8344 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/ExecutionEngine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/ExecutionEngine/ExecutionEngine.cpp') diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 5691a248a0..dbcaf63cde 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -21,16 +21,16 @@ Statistic<> NumInitBytes("lli", "Number of bytes of global vars initialized"); ExecutionEngine *ExecutionEngine::create (Module *M, bool ForceInterpreter, - bool DebugMode, bool TraceMode) { + bool TraceMode) { ExecutionEngine *EE = 0; // If there is nothing that is forcing us to use the interpreter, make a JIT. - if (!ForceInterpreter && !DebugMode && !TraceMode) + if (!ForceInterpreter && !TraceMode) EE = VM::create(M); // If we can't make a JIT, make an interpreter instead. if (EE == 0) - EE = Interpreter::create(M, DebugMode, TraceMode); + EE = Interpreter::create(M, TraceMode); return EE; } -- cgit v1.2.3-18-g5258