From 04e26409011389f7b5759114905195a4fb0b0286 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Tue, 22 Nov 2022 16:52:42 +0100 Subject: rename Tmp.ins to be more descriptive --- mem.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'mem.c') diff --git a/mem.c b/mem.c index 6cbb801..e372f0f 100644 --- a/mem.c +++ b/mem.c @@ -299,8 +299,8 @@ coalesce(Fn *fn) } while (n--) { t = &fn->tmp[kill[n]]; - assert(t->ndef == 1 && t->ins); - *t->ins = (Ins){.op = Onop}; + assert(t->ndef == 1 && t->def); + *t->def = (Ins){.op = Onop}; for (u=t->use; u<&t->use[t->nuse]; u++) { assert(u->type == UIns); i = u->u.ins; @@ -327,7 +327,7 @@ coalesce(Fn *fn) if (s->s || !s->r.b) goto Skip; if (rovlap(r, s->r)) - /* O(n^2) can be approximated + /* O(n) can be approximated * by 'goto Skip;' if need be */ for (m=n; &sl[m]s == s) continue; t = &fn->tmp[s->t]; - assert(t->ndef == 1 && t->ins); - *t->ins = (Ins){.op = Onop}; + assert(t->ndef == 1 && t->def); + *t->def = (Ins){.op = Onop}; for (u=t->use; u<&t->use[t->nuse]; u++) { assert(u->type == UIns); arg = u->u.ins->arg; -- cgit 1.4.1