* src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
[fw/sdcc] / src / SDCClrange.c
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);