From: johanknol Date: Mon, 26 Mar 2001 08:49:46 +0000 (+0000) Subject: removed a warning X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f0fa764847b76bd41a938b6d16ccc8b5c0b72282;p=fw%2Fsdcc removed a warning git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@714 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/ds390/ralloc.c b/src/ds390/ralloc.c index 1302506d..28b95315 100644 --- a/src/ds390/ralloc.c +++ b/src/ds390/ralloc.c @@ -2007,7 +2007,7 @@ static bool isBitwiseOptimizable (iCode * ic) { sym_link *ltype = getSpec (operandType (IC_LEFT (ic))); - sym_link *rtype = getSpec (operandType (IC_RIGHT (ic))); + // jwk 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/ralloc.c b/src/mcs51/ralloc.c index 25dedea7..aafd4dcd 100644 --- a/src/mcs51/ralloc.c +++ b/src/mcs51/ralloc.c @@ -2013,7 +2013,7 @@ static bool isBitwiseOptimizable (iCode * ic) { sym_link *ltype = getSpec (operandType (IC_LEFT (ic))); - sym_link *rtype = getSpec (operandType (IC_RIGHT (ic))); + // jwk sym_link *rtype = getSpec (operandType (IC_RIGHT (ic))); /* bitwise operations are considered optimizable under the following conditions (Jean-Louis VERN)