summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index 7e8b75a..66f12ad 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -52,24 +52,20 @@ enum {
 #define CONST(x) (Ref){RConst, x}
 
 static inline int req(Ref a, Ref b)
-{
-	return a.type == b.type && a.val == b.val;
-}
+{ return a.type == b.type && a.val == b.val; }
 static inline int rtype(Ref r)
-{
-	return req(r, R) ? -1 : r.type;
-}
+{ return req(r, R) ? -1 : r.type; }
 
 enum {
 	OXXX = 0,
+	/* public instruction */
 	OAdd,
 	OSub,
 	ODiv,
-	OMod,
-	OCopy,
-
+	ORem,
 	/* reserved instructions */
-	OX86Div,
+	OCopy,
+	OXDiv,
 	OLast
 };