clean up garbage in last checkin
authorkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 20 Nov 2000 23:44:19 +0000 (23:44 +0000)
committerkvigor <kvigor@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 20 Nov 2000 23:44:19 +0000 (23:44 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@505 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/SDCCicode.c

index 874e318cc2be9fde904a46cd0b6704773b7dddb3..47d6874467c3fd9f21401d8e541e5b9b828848a0 100644 (file)
@@ -1733,7 +1733,7 @@ operand *geniCodeArray (operand *left,operand *right)
     }
 
     /* array access */
-    if (/* getSize(ltype) > 1 &&  */(getSize(operandType(right)) < INTSIZE)
+    if (getSize(operandType(right)) < INTSIZE
     {
         /* Widen the index type to int first. */
        right = geniCodeCast(INTTYPE,right,TRUE);