From: Wolfgang (Blub) Bumiller Date: Sun, 11 Nov 2012 22:36:03 +0000 (+0100) Subject: show the function name for CALLs in disasm X-Git-Tag: 0.1~19^2~20 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fc6bd54943854ccc5c5f620fd2b4ce890073c013;p=xonotic%2Fgmqcc.git show the function name for CALLs in disasm --- diff --git a/exec.c b/exec.c index c6d4914..060660a 100644 --- a/exec.c +++ b/exec.c @@ -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)