X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCBBlock.c;h=a656fb77c6c992e04a6f919be3af242706c747d3;hb=126266c793dc10bc1e5bb8b32fb2875c4b7af620;hp=eeebbd4ce8edb74534bcf2edb9e7c574f14488e0;hpb=2f4825ff2c16c755a316febe687b3d43aa57b482;p=fw%2Fsdcc diff --git a/src/SDCCBBlock.c b/src/SDCCBBlock.c index eeebbd4c..a656fb77 100644 --- a/src/SDCCBBlock.c +++ b/src/SDCCBBlock.c @@ -141,7 +141,9 @@ dumpLiveRanges (int id, hTab * liveRanges) } else { file = stdout; } - + + if (currFunc) + fprintf(file,"------------- Func %s -------------\n",currFunc->name); for (sym = hTabFirstItem (liveRanges, &k); sym; sym = hTabNextItem (liveRanges, &k)) { @@ -160,7 +162,8 @@ dumpLiveRanges (int id, hTab * liveRanges) { fprintf (file, "}{ sir@ %s", sym->usl.spillLoc->rname); } - fprintf (file, "}"); + fprintf (file, "} clashes with "); + bitVectDebugOn(sym->clashes,file); fprintf (file, "\n"); }