From: kvigor Date: Mon, 20 Nov 2000 23:44:19 +0000 (+0000) Subject: clean up garbage in last checkin X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=bfa145e5700c5e92e2d5c221052ac9d341adcee7;p=fw%2Fsdcc clean up garbage in last checkin git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@505 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCicode.c b/src/SDCCicode.c index 874e318c..47d68744 100644 --- a/src/SDCCicode.c +++ b/src/SDCCicode.c @@ -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);