Print out a label if we step into the first instruction of a basic block
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Execution.cpp
index 52d7e86dca0c77fa82c8f0d6bd04032aef2f60ad..a3d8d3f0c7a22bccf88f5a93fddd763913300dfb 100644 (file)
@@ -1001,6 +1001,9 @@ void Interpreter::finish() {
 //
 void Interpreter::printCurrentInstruction() {
   if (!ECStack.empty()) {
+    if (ECStack.back().CurBB->begin() == ECStack.back().CurInst)  // print label
+      WriteAsOperand(cout, ECStack.back().CurBB) << ":\n";
+
     Instruction *I = *ECStack.back().CurInst;
     InstNumber *IN = (InstNumber*)I->getAnnotation(SlotNumberAID);
     assert(IN && "Instruction has no numbering annotation!");