Remember to print out the next instruction if stepping over an external method call

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1028 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-29 16:05:19 +00:00
parent a74a6b5fdf
commit 069aa256af

View File

@ -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...