disabled the fix for bug #604575
authorjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 8 Apr 2003 12:37:37 +0000 (12:37 +0000)
committerjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 8 Apr 2003 12:37:37 +0000 (12:37 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2494 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCicode.c

index 038d91d59b8b3597f597eca5ea293d7bbc5a3afb..9dde59a1a8856cee8eada9086a2db63caab71173 100644 (file)
@@ -3545,7 +3545,7 @@ ast2iCode (ast * tree,int lvl)
       return geniCodeRightShift (geniCodeRValue (left, FALSE),
                                 geniCodeRValue (right, FALSE));
     case CAST: 
-#if 1 // just in case Paul detects another sloc regression again :)
+#if 0 // this indeed needs a second thought
       {
        operand *op;
        
@@ -3559,7 +3559,7 @@ ast2iCode (ast * tree,int lvl)
        }
        return op;
       }
-#else // bug #604575
+#else // bug #604575, is it a bug ????
       return geniCodeCast (operandType (left),
                           geniCodeRValue (right, FALSE), FALSE);
 #endif