diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2022-11-22 16:52:42 +0100 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2022-11-22 21:55:06 +0100 |
commit | 04e26409011389f7b5759114905195a4fb0b0286 (patch) | |
tree | 1a31d31fe7b36d953ce891716377fbfa935425c3 /ssa.c | |
parent | 87dc3ea290a4ba75f153c5bb8b9fb87ec548e64f (diff) | |
download | roux-04e26409011389f7b5759114905195a4fb0b0286.tar.gz |
rename Tmp.ins to be more descriptive
Diffstat (limited to 'ssa.c')
-rw-r--r-- | ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssa.c b/ssa.c index d2ac227..849f679 100644 --- a/ssa.c +++ b/ssa.c @@ -47,7 +47,7 @@ filluse(Fn *fn) /* todo, is this the correct file? */ tmp = fn->tmp; for (t=Tmp0; t<fn->ntmp; t++) { - tmp[t].ins = 0; + tmp[t].def = 0; tmp[t].bid = -1u; tmp[t].ndef = 0; tmp[t].nuse = 0; @@ -89,7 +89,7 @@ filluse(Fn *fn) w = WFull; t = i->to.val; tmp[t].width = w; - tmp[t].ins = i; + tmp[t].def = i; tmp[t].bid = b->id; tmp[t].ndef++; tmp[t].cls = i->cls; |