From: johanknol Date: Fri, 27 Apr 2001 18:22:53 +0000 (+0000) Subject: small fixes X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=116a3506c0f00c82fbab6ca671873da43de4d102;p=fw%2Fsdcc small fixes git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@761 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/ds390/ralloc.c b/src/ds390/ralloc.c index 871e761f..0ba02dd0 100644 --- a/src/ds390/ralloc.c +++ b/src/ds390/ralloc.c @@ -2021,7 +2021,7 @@ static bool isBitwiseOptimizable (iCode * ic) { sym_link *ltype = getSpec (operandType (IC_LEFT (ic))); - // jwk sym_link *rtype = getSpec (operandType (IC_RIGHT (ic))); + sym_link *rtype = getSpec (operandType (IC_RIGHT (ic))); /* bitwise operations are considered optimizable under the following conditions (Jean-Louis VERN) diff --git a/src/mcs51/gen.c b/src/mcs51/gen.c index 446618b4..1fc1c778 100644 --- a/src/mcs51/gen.c +++ b/src/mcs51/gen.c @@ -4189,7 +4189,6 @@ genAnd (iCode * ic, iCode * ifx) int bytelit = 0; char buffer[10]; - catchMe(); aopOp ((left = IC_LEFT (ic)), ic, FALSE); aopOp ((right = IC_RIGHT (ic)), ic, FALSE); aopOp ((result = IC_RESULT (ic)), ic, TRUE);