From 48d330a1e9271dbd59564469fb4ce90d84f84f24 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sat, 11 Aug 2012 11:46:44 +0200 Subject: [PATCH] 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 --- exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.c b/exec.c index 613f606..c65c6e2 100644 --- a/exec.c +++ b/exec.c @@ -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: -- 2.39.2