Operators <<, >>, are now fully working for constant shifts on unsigned char and...
[fw/sdcc] / src / SDCCBBlock.c
index 15470f19ac039f8081e05f7f3fd48a4e418ee25b..2d83d9f3da6dc0adee0446a8baab7b8d4af46fa0 100644 (file)
@@ -162,31 +162,6 @@ dumpLiveRanges (int id, hTab * liveRanges)
          fprintf (file, "}{ sir@ %s", sym->usl.spillLoc->rname);
        }
       fprintf (file, "}");
-
-      /* if assigned to registers */
-      if (sym->nRegs)
-       {
-         if (sym->isspilt)
-           {
-             if (!sym->remat)
-               if (sym->usl.spillLoc)
-                 fprintf (file, "[%s]", (sym->usl.spillLoc->rname[0] ?
-                                         sym->usl.spillLoc->rname :
-                                         sym->usl.spillLoc->name));
-               else
-                 fprintf (file, "[err]");
-             else
-               fprintf (file, "[remat]");
-           }
-         else
-           {
-             int i;
-             fprintf (file, "[");
-             for (i = 0; i < sym->nRegs; i++)
-               fprintf (file, "%s ", port->getRegName (sym->regs[i]));
-             fprintf (file, "]");
-           }
-       }
       fprintf (file, "\n");
     }