From 78163d6bc2fcc0e6fc52375724907428b2381edd Mon Sep 17 00:00:00 2001 From: johanknol Date: Fri, 27 Jul 2001 18:50:28 +0000 Subject: [PATCH] no need to register bitfields git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1108 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/mcs51/ralloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.47.2