summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
Diffstat (limited to 'lisc')
-rw-r--r--lisc/lisc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index 8ec1afd..2e99374 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -63,7 +63,7 @@ enum Reg {
 
 	Tmp0, /* first non-reg temporary */
 
-	NIReg = RBX - RAX + 1,
+	NIReg = R12 - RAX + 1,
 	NFReg = XMM15 - XMM0 + 1,
 	NISave = 9,
 	NFSave = 15,
@@ -199,7 +199,7 @@ enum Op {
 	OStoreb,
 #define OStore  OStored
 #define OStore1 OStoreb
-	OLoadl,
+	OLoadl,  /* needs to match OExt (mem.c) */
 	OLoadsw,
 	OLoaduw,
 	OLoadsh,