From f3eb798d54d13b900edf769bc512e15856287a9c Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Thu, 16 Jul 2015 03:00:45 -0400 Subject: [PATCH] do not use _ in identifiers --- lisc/ssa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisc/ssa.c b/lisc/ssa.c index c4710f6..2ad1755 100644 --- a/lisc/ssa.c +++ b/lisc/ssa.c @@ -192,7 +192,7 @@ ssafix(Fn *f, int t) abort(); for (t1=t0; t0ntmp; 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);