summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lisc/isel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisc/isel.c b/lisc/isel.c
index d5ccdd7..6937aaf 100644
--- a/lisc/isel.c
+++ b/lisc/isel.c
@@ -106,6 +106,8 @@ static int
 argcls(Ins *i)
 {
 	/* fixme, not correct for some instructions (bcast) */
+	if (OLoad <= i->op && i->op <= OLoad1)
+		return Kl;
 	return i->cls;
 }