From f622efa05a3fbd4938d1fb09e692ae0785770bc1 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 14 Feb 2019 13:23:28 -0800 Subject: Rearrange the fields in Ins so the bit-fields get packed together --- arm64/abi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'arm64') diff --git a/arm64/abi.c b/arm64/abi.c index 1c97ef3..846ac87 100644 --- a/arm64/abi.c +++ b/arm64/abi.c @@ -313,10 +313,7 @@ stkblob(Ref r, Class *c, Fn *fn, Insl **ilp) al = c->t->align - 2; /* NAlign == 3 */ if (al < 0) al = 0; - il->i = (Ins){ - Oalloc + al, r, - {getcon(c->t->size, fn)}, Kl - }; + il->i = (Ins){Oalloc+al, Kl, r, {getcon(c->t->size, fn)}}; il->link = *ilp; *ilp = il; } -- cgit 1.4.1