diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-01 18:17:06 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:29 -0400 |
commit | cf307002d9cb87238d1c09b2bd795a057ae064d7 (patch) | |
tree | b23c93bd2bf4c11c409e981ed8ea172a3ffcf43e /lisc/ssa.c | |
parent | dff7044a2caba0dab6b0c140fcf60f29c0565996 (diff) | |
download | roux-cf307002d9cb87238d1c09b2bd795a057ae064d7.tar.gz |
start work on word/long handling
Diffstat (limited to 'lisc/ssa.c')
-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 5546190..96d6a34 100644 --- a/lisc/ssa.c +++ b/lisc/ssa.c @@ -191,7 +191,7 @@ ssafix(Fn *f, int t) if (!f->sym) diag("ssafix: out of memory"); for (t1=t0; t0<f->ntmp; t0++) { - f->sym[t0].type = STmp; + f->sym[t0] = f->sym[t]; snprintf(f->sym[t0].name, NString, "%s%d", f->sym[t].name, t0-t1); } |