* src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 7 Oct 2003 08:16:04 +0000 (08:16 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 7 Oct 2003 08:16:04 +0000 (08:16 +0000)
* 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

ChangeLog
src/SDCCloop.c
src/SDCClrange.c

index 0f017884cac503ef8b2efb9cb1dfc94820ef1c12..c79f16d4ebf120ae45f41a746d4fca304b5fbd0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 2003-10-06 Bernhard Held <bernhard@bernhardheld.de>
 
        * 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 <borut.razem@siol.net>
 
index 10c17fc60fc4a799cacc842fc79beea80153f5c0..e68eabf916a3431d769df30bead5152b621140f0 100644 (file)
@@ -235,7 +235,7 @@ DEFSETFUNC (addToExitsMarkDepth)
   if (ebp->depth<depth)
     ebp->depth = depth;
 
-  if (getenv ("LRKLAUS"))
+  if (getenv ("SDCC_LRKLAUS"))
     {
       /* put the loop region info in the block */
       if (!isinSet (ebp->KpartOfLoop, lr))
index 3a86ced93309c75d4e8607d191bb75da67062120..26e4e97c72d76c3c8e2bdf21122832c3eee1b59d 100644 (file)
@@ -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);