replace RMem refs with an OAddr opertation
This commit is contained in:
parent
16fe5c1366
commit
ca8c320dec
4 changed files with 10 additions and 15 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue