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.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index 76290dc..6e9ce6c 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -90,7 +90,6 @@ struct Ref {
 enum {
 	RTmp,
 	RCon,
-	RMem,
 	RSlot,
 	NRef = (1<<14) - 1
 };
@@ -99,7 +98,6 @@ enum {
 #define TMP(x)   (Ref){RTmp, x}
 #define CON(x)   (Ref){RCon, x}
 #define CON_Z    CON(0)          /* reserved zero constant */
-#define MEM(x)   (Ref){RMem, x}
 #define SLOT(x)  (Ref){RSlot, x}
 
 static inline int req(Ref a, Ref b)