From fc6bd54943854ccc5c5f620fd2b4ce890073c013 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sun, 11 Nov 2012 23:36:03 +0100 Subject: [PATCH] show the function name for CALLs in disasm --- exec.c | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.2