qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit f3eb798d54d13b900edf769bc512e15856287a9c
parent 395891e95c3e9a76b11157d5f0d8124becf03db9
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Thu, 16 Jul 2015 03:00:45 -0400

do not use _ in identifiers

Diffstat:
Mlisc/ssa.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/ssa.c b/lisc/ssa.c @@ -192,7 +192,7 @@ ssafix(Fn *f, int t) abort(); for (t1=t0; t0<f->ntmp; t0++) { f->sym[t0].type = STmp; - snprintf(f->sym[t0].name, NString, "%s_%d", + snprintf(f->sym[t0].name, NString, "%s%d", f->sym[t].name, t0-t1); } free(top);