]> git.sur5r.net Git - cc65/commitdiff
Remove unused flags
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 9 Dec 2000 21:09:52 +0000 (21:09 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 9 Dec 2000 21:09:52 +0000 (21:09 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@577 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/expr.c
src/cc65/expr.h

index ae0cd105a5f120a85de9c6ab2892e3bb1f898da5..5d59e0b96ccc5e94fd50704df99cbceda95b4136 100644 (file)
@@ -3010,7 +3010,6 @@ void test (unsigned label, int cond)
 
     /* Prepare the expression, setup labels */
     memset (&lval, 0, sizeof (lval));
-    lval.e_test = E_TEST;
 
     /* Generate code to eval the expr */
     k = expr (hie0, &lval);
index a790b70ad1a6b973e5c2f3808ea3c1db2185e4be..fa5430fced6e8de3bddc9bfc769e691f46899488 100644 (file)
@@ -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 {