rename Tmp.ins to be more descriptive

This commit is contained in:
Quentin Carbonneaux 2022-11-22 16:52:42 +01:00
parent 87dc3ea290
commit 04e2640901
3 changed files with 8 additions and 8 deletions

4
ssa.c
View file

@ -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;