mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 17:11:32 +00:00
show the function name for CALLs in disasm
This commit is contained in:
parent
bde2175779
commit
fc6bd54943
1 changed files with 1 additions and 0 deletions
1
exec.c
1
exec.c
|
@ -427,6 +427,7 @@ static void prog_print_statement(qc_program *prog, prog_section_statement *st)
|
||||||
else if (st->opcode >= INSTR_CALL0 &&
|
else if (st->opcode >= INSTR_CALL0 &&
|
||||||
st->opcode <= INSTR_CALL8)
|
st->opcode <= INSTR_CALL8)
|
||||||
{
|
{
|
||||||
|
trace_print_global(prog, st->o1.u1, TYPE_FUNCTION);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
else if (st->opcode == INSTR_GOTO)
|
else if (st->opcode == INSTR_GOTO)
|
||||||
|
|
Loading…
Reference in a new issue