summary refs log tree commit diff
path: root/arm64/emit.c
diff options
context:
space:
mode:
Diffstat (limited to 'arm64/emit.c')
-rw-r--r--arm64/emit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm64/emit.c b/arm64/emit.c
index 47097b7..2506eea 100644
--- a/arm64/emit.c
+++ b/arm64/emit.c
@@ -285,7 +285,7 @@ loadcon(Con *c, int r, int k, FILE *f)
 static void emitins(Ins *, E *);
 
 static void
-fixarg(Ref *pr, E *e)
+fixarg(Ref *pr, int sz, E *e)
 {
 	Ins *i;
 	Ref r;
@@ -294,7 +294,7 @@ fixarg(Ref *pr, E *e)
 	r = *pr;
 	if (rtype(r) == RSlot) {
 		s = slot(r.val, e);
-		if (s > 32760) {
+		if (s > sz * 4095u) {
 			i = &(Ins){Oaddr, Kl, TMP(IP0), {r}};
 			emitins(i, e);
 			*pr = TMP(IP0);
@@ -313,9 +313,9 @@ emitins(Ins *i, E *e)
 	switch (i->op) {
 	default:
 		if (isload(i->op))
-			fixarg(&i->arg[0], e);
+			fixarg(&i->arg[0], loadsz(i), e);
 		if (isstore(i->op))
-			fixarg(&i->arg[1], e);
+			fixarg(&i->arg[1], storesz(i), e);
 	Table:
 		/* most instructions are just pulled out of
 		 * the table omap[], some special cases are