From: bernhardheld Date: Tue, 7 Oct 2003 08:16:04 +0000 (+0000) Subject: * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=bc19591f27dea5081a8b657e8bb72ade19bb1a8f;p=fw%2Fsdcc * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2928 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 0f017884..c79f16d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 2003-10-06 Bernhard Held * clean.mk: removed '=' in "-maxdepth=1" + * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS + * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS 2003-10-06 Borut Razem diff --git a/src/SDCCloop.c b/src/SDCCloop.c index 10c17fc6..e68eabf9 100644 --- a/src/SDCCloop.c +++ b/src/SDCCloop.c @@ -235,7 +235,7 @@ DEFSETFUNC (addToExitsMarkDepth) if (ebp->depthdepth = depth; - if (getenv ("LRKLAUS")) + if (getenv ("SDCC_LRKLAUS")) { /* put the loop region info in the block */ if (!isinSet (ebp->KpartOfLoop, lr)) diff --git a/src/SDCClrange.c b/src/SDCClrange.c index 3a86ced9..26e4e97c 100644 --- a/src/SDCClrange.c +++ b/src/SDCClrange.c @@ -124,7 +124,7 @@ isLastUse (operand * op, eBBlock * ebp, iCode * ic, if (usedInRemaining (op, ic)) return 0; - if (getenv ("LRKLAUS")) + if (getenv ("SDCC_LRKLAUS")) { /* if not then check any of the following blocks use it */ for (i = 0; i < count; i++) @@ -337,7 +337,7 @@ operandLUse (operand * op, eBBlock ** ebbs, /* if this is the last use then if this block belongs to a loop & some definition comes into the loop then extend the live range to the end of the loop */ - if (getenv ("LRKLAUS")) + if (getenv ("SDCC_LRKLAUS")) { if (ebp->KpartOfLoop) { @@ -748,7 +748,7 @@ computeLiveRanges (eBBlock ** ebbs, int count) iCodeSeqhTab = newHashTable (iCodeKey); sequenceiCode (ebbs, count); - if (getenv ("LRKLAUS")) + if (getenv ("SDCC_LRKLAUS")) { /* add blocks between loop blocks as part of that loop */ addLoopBlocks (ebbs, count);