From: sdattalo Date: Sun, 7 Jul 2002 15:09:01 +0000 (+0000) Subject: During a debug session, the code for fixing register banks was turned off. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=c82c2299507b093e1696fd7e302bb927cb46fe99;p=fw%2Fsdcc During a debug session, the code for fixing register banks was turned off. git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2034 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/pic/pcode.c b/src/pic/pcode.c index 3e5aa277..7c2bc0a0 100644 --- a/src/pic/pcode.c +++ b/src/pic/pcode.c @@ -4720,6 +4720,9 @@ void AnalyzeBanking(void) for(pb = the_pFile->pbHead; pb; pb = pb->next) BanksUsedFlow(pb); + for(pb = the_pFile->pbHead; pb; pb = pb->next) + FixRegisterBanking(pb); + } /*-----------------------------------------------------------------*/