]> git.sur5r.net Git - cc65/blobdiff - src/cc65/expr.h
Bugfix
[cc65] / src / cc65 / expr.h
index 7768d3540dea0ccb6f1a94824ccb347fc1d89e5d..fa5430fced6e8de3bddc9bfc769e691f46899488 100644 (file)
@@ -27,7 +27,7 @@
 #define E_MLOCAL       0x0040  /* Reference to local variable (stack offset) */
 #define E_MCONST       0x0020  /* Constant value */
 #define E_MEXPR                0x0010  /* Result is in primary register */
-#define E_MEOFFS       0x0011  /* Offset is in primary register, base on stack */
+#define E_MEOFFS               0x0011  /* Base is in primary register, const offset */
 
 #define E_MCTYPE       0x0007  /* Type of a constant */
 #define E_TCONST       0x0000  /* Constant */
@@ -40,9 +40,6 @@
 /* Defines for the test field of the expression descriptor */
 #define E_CC           0x0001  /* expr has set cond codes apropos result value */
 #define E_FORCETEST            0x0002  /* if expr has NOT set CC, force a test */
-#define E_LOGL         0x0004  /* expr has left a logical value (1 or 0) in AX */
-#define E_XINV         0x0008  /* flip this bit to invert sense of test */
-#define E_TEST         0x0010  /* We're evaluating a test */
 
 /* Describe the result of an expression */
 struct expent {