provide BZERO macro for bitsets

This commit is contained in:
Quentin Carbonneaux 2015-11-09 21:34:59 -05:00
parent b5330f2a44
commit 8ed8f1cd4c
5 changed files with 8 additions and 7 deletions

View file

@ -320,7 +320,7 @@ spill(Fn *fn)
curi = 0;
s1 = b->s1;
s2 = b->s2;
v = (Bits){{0}};
BZERO(v);
hd = 0;
if (s1 && s1->id <= n)
hd = s1;
@ -382,7 +382,7 @@ spill(Fn *fn)
}
s = tmp[t].slot;
}
w = (Bits){{0}};
BZERO(w);
j = opdesc[i->op].nmem;
j -= rtype(i->arg[0]) == RAMem;
j -= rtype(i->arg[1]) == RAMem;