summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-08-16 12:12:19 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:31 -0400
commitca8c320dec82df1700216a5a040768bfc2d81632 (patch)
treed913fcc9b98ecc3b884099eada8cbd4012c57694 /lisc/lisc.h
parent16fe5c13668d9ccc8f3b14c6c20565dfe5a26d57 (diff)
downloadroux-ca8c320dec82df1700216a5a040768bfc2d81632.tar.gz
replace RMem refs with an OAddr opertation
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)