Remove some old commented out code
authorIan Lynagh <igloo@earth.li>
Sun, 20 Jun 2010 00:04:59 +0000 (00:04 +0000)
committerIan Lynagh <igloo@earth.li>
Sun, 20 Jun 2010 00:04:59 +0000 (00:04 +0000)
rts/Printer.c

index b55f105..565a11e 100644 (file)
@@ -289,10 +289,6 @@ printClosure( StgClosure *obj )
         {
             StgWord i;
             debugBelch("ARR_WORDS(\"");
-            /* ToDo: we can't safely assume that this is a string! 
-            for (i = 0; arrWordsGetChar(obj,i); ++i) {
-                putchar(arrWordsGetChar(obj,i));
-               } */
            for (i=0; i<arr_words_words((StgArrWords *)obj); i++)
              debugBelch("%lu", (lnat)((StgArrWords *)obj)->payload[i]);
             debugBelch("\")\n");