[sdb] Avoid marking seq points as nonempty-stack if they have a sym seq point. Fix...
[mono.git] / mono / mini / mini-codegen.c
index e1914885b60d9622b911459bfb7dba53d8284e75..4fde10b791fabbd369962c611d37f097cb6000d4 100644 (file)
@@ -702,7 +702,7 @@ mono_print_ins_index (int i, MonoInst *ins)
                break;
        case OP_IL_SEQ_POINT:
        case OP_SEQ_POINT:
-               printf (" il: %x", (int)ins->inst_imm);
+               printf (" il: 0x%x%s", (int)ins->inst_imm, ins->flags & MONO_INST_NONEMPTY_STACK ? ", nonempty-stack" : "");
                break;
        default:
                break;