diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index 9d07d2dd1a7..60bd77bcca5 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -907,6 +907,8 @@ void Interpreter::nextInstruction() { // Do the 'next' command // able the step into a function, if it's external for example. if (ECStack.size() != StackSize) finish(); // Finish executing the function... + else + printCurrentInstruction(); } else { // Normal instruction, just step... |