diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-07-16 03:00:45 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:28 -0400 |
commit | f3eb798d54d13b900edf769bc512e15856287a9c (patch) | |
tree | ac46a1a1d7f9f000a60f97a072bc6d5e114e0ed8 /lisc | |
parent | 395891e95c3e9a76b11157d5f0d8124becf03db9 (diff) | |
download | roux-f3eb798d54d13b900edf769bc512e15856287a9c.tar.gz |
do not use _ in identifiers
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/ssa.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; 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); |