mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-19 06:40:49 +00:00
Merge branch 'master' into blub/bc3
This commit is contained in:
commit
09fa41318d
1 changed files with 4 additions and 0 deletions
4
ir.c
4
ir.c
|
@ -2549,6 +2549,10 @@ void ir_function_dump(ir_function *f, char *ind,
|
|||
int (*oprintf)(const char*, ...))
|
||||
{
|
||||
size_t i;
|
||||
if (f->builtin != 0) {
|
||||
oprintf("%sfunction %s = builtin %i\n", ind, f->name, -f->builtin);
|
||||
return;
|
||||
}
|
||||
oprintf("%sfunction %s\n", ind, f->name);
|
||||
strncat(ind, "\t", IND_BUFSZ);
|
||||
if (f->locals_count)
|
||||
|
|
Loading…
Reference in a new issue