From: epetrich Date: Sat, 7 Feb 2004 05:57:15 +0000 (+0000) Subject: * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=187f7a2af3c2d89cf2b129d476d8cf4667570088;p=fw%2Fsdcc * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3172 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 30535df4..97788cf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-02-07 Erik Petrich + + * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations + 2004-02-06 Erik Petrich * src/SDCCast.c (decorateType), diff --git a/src/pic16/gen.c b/src/pic16/gen.c index bead3445..47d80228 100644 --- a/src/pic16/gen.c +++ b/src/pic16/gen.c @@ -4996,8 +4996,8 @@ static void genCmpEq (iCode *ic, iCode *ifx) if(ifx && !AOP_SIZE(result)){ - DEBUGpic16_emitcode ("; ***","%s %d CASE 1",__FUNCTION__,__LINE__); symbol *tlbl; + DEBUGpic16_emitcode ("; ***","%s %d CASE 1",__FUNCTION__,__LINE__); /* if they are both bit variables */ if (AOP_TYPE(left) == AOP_CRY && ((AOP_TYPE(right) == AOP_CRY) || (AOP_TYPE(right) == AOP_LIT))) { @@ -7716,10 +7716,10 @@ static void genrshTwo (operand *result,operand *left, static void shiftRLong (operand *left, int offl, operand *result, int sign) { - DEBUGpic16_emitcode ("; ***","%s %d",__FUNCTION__,__LINE__); int size = AOP_SIZE(result); int same = pic16_sameRegs(AOP(left),AOP(result)); - int i; + int i; + DEBUGpic16_emitcode ("; ***","%s %d",__FUNCTION__,__LINE__); DEBUGpic16_emitcode ("; ***","%s %d offl:%d size:%d",__FUNCTION__,__LINE__,offl,size);