unnamed globals in the trace output use [@addr] now instead of [#addr] since # is used as a prefix for all immediates, so now it's less confusing

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-11 11:46:44 +02:00
parent 9b2e26a189
commit 48d330a1e9

2
exec.c
View file

@ -255,7 +255,7 @@ static void trace_print_global(qc_program *prog, unsigned int glob, int vtype)
vtype = def->type;
}
else
len = printf("[#%u] ", glob);
len = printf("[@%u] ", glob);
switch (vtype) {
case TYPE_VOID: