From: johanknol Date: Tue, 17 Jul 2001 07:48:08 +0000 (+0000) Subject: remove a bad fix X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=f1e66ba07747800e2fb275582608e02a83e47193;p=fw%2Fsdcc remove a bad fix git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1076 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/ds390/ralloc.c b/src/ds390/ralloc.c index 311107f4..2ff9574e 100644 --- a/src/ds390/ralloc.c +++ b/src/ds390/ralloc.c @@ -2301,8 +2301,6 @@ packRegisters (eBBlock * ebp) /* if this is a +/- operation with a rematerizable then mark this as rematerializable as well */ -#if 0 - // jwk 20010716: temporary disabled because of bug #441448 if ((ic->op == '+' || ic->op == '-') && (IS_SYMOP (IC_LEFT (ic)) && IS_ITEMP (IC_RESULT (ic)) && @@ -2316,7 +2314,6 @@ packRegisters (eBBlock * ebp) OP_SYMBOL (IC_RESULT (ic))->rematiCode = ic; OP_SYMBOL (IC_RESULT (ic))->usl.spillLoc = NULL; } -#endif /* mark the pointer usages */ if (POINTER_SET (ic)) diff --git a/src/mcs51/ralloc.c b/src/mcs51/ralloc.c index 1bc23245..f41676e9 100644 --- a/src/mcs51/ralloc.c +++ b/src/mcs51/ralloc.c @@ -2297,8 +2297,6 @@ packRegisters (eBBlock * ebp) /* if this is a +/- operation with a rematerizable then mark this as rematerializable as well */ -#if 0 - // jwk 20010716: temporary disabled because of bug #441448 if ((ic->op == '+' || ic->op == '-') && (IS_SYMOP (IC_LEFT (ic)) && IS_ITEMP (IC_RESULT (ic)) && @@ -2310,7 +2308,6 @@ packRegisters (eBBlock * ebp) OP_SYMBOL (IC_RESULT (ic))->rematiCode = ic; OP_SYMBOL (IC_RESULT (ic))->usl.spillLoc = NULL; } -#endif /* mark the pointer usages */ if (POINTER_SET (ic))