From: johanknol Date: Fri, 27 Jul 2001 18:50:28 +0000 (+0000) Subject: no need to register bitfields X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=78163d6bc2fcc0e6fc52375724907428b2381edd;p=fw%2Fsdcc no need to register bitfields git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1108 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/mcs51/ralloc.c b/src/mcs51/ralloc.c index f41676e9..f1a4e1dd 100644 --- a/src/mcs51/ralloc.c +++ b/src/mcs51/ralloc.c @@ -1587,8 +1587,8 @@ packRegsForAssign (iCode * ic, eBBlock * ebp) if (!IS_ITEMP (IC_RIGHT (ic)) || OP_SYMBOL (IC_RIGHT (ic))->isind || - OP_LIVETO (IC_RIGHT (ic)) > ic->seq || - IS_BITFIELD (etype)) + OP_LIVETO (IC_RIGHT (ic)) > ic->seq + /* why? || IS_BITFIELD (etype) */ ) { return 0; }