no bitfields yet
[fw/sdcc] / support / regression / tests / logic.c
index 1636d334c32cca3e41e76f2cc15035d55b7cf0b2..25f3e817c78f944aabc5f970bfc579fe87fe98f6 100644 (file)
@@ -51,7 +51,6 @@ testLogicalAnd(void)
     ASSERT(true && !false);
     ASSERT(!false && true);
 
-    /* PENDING: Doesn't work. */
     /* Test that the evaluation is aborted on the first false. */
     if (true && false && neverGetHere()) {
         /* Tested using neverGetHere() */
@@ -80,7 +79,6 @@ testLogicalOr(void)
     ASSERT(!true || !false);
     ASSERT(false || true);
 
-    /* PENDING: Doesn't work in sdcc. */
     /* Test that the evaluation is aborted on the first hit. */
     if (false || true || neverGetHere()) {
         /* Tested using neverGetHere() */