show the function name for CALLs in disasm

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-11 23:36:03 +01:00
parent bde2175779
commit fc6bd54943

1
exec.c
View file

@ -427,6 +427,7 @@ static void prog_print_statement(qc_program *prog, prog_section_statement *st)
else if (st->opcode >= INSTR_CALL0 &&
st->opcode <= INSTR_CALL8)
{
trace_print_global(prog, st->o1.u1, TYPE_FUNCTION);
printf("\n");
}
else if (st->opcode == INSTR_GOTO)