shithub: mc

Download patch

ref: 60a248049f2cdcb1e7a53e9d77374769b4436545
parent: ca5cfce97b1a41ab70a983117e9ecf8fc605c5d2
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Aug 23 20:02:53 EDT 2015

Useless, noisy debug trace dropped.

--- a/6/ra.c
+++ b/6/ra.c
@@ -1174,13 +1174,6 @@
                 else
                     mov = mkinsn(Imov, spillslot(s, use[i]), tmp, NULL);
                 lappend(&new, &nnew, mov);
-                if (debugopt['r']) {
-                    printf("loading ");
-                    dbglocprint(stdout, locmap[use[i]], 'x');
-                    printf(" -> ");
-                    dbglocprint(stdout, tmp, 'x');
-                    printf("\n");
-                }
             }
             updatelocs(s, map, insn);
             lappend(&new, &nnew, insn);
@@ -1193,13 +1186,6 @@
                 else
                     mov = mkinsn(Imov, tmp, spillslot(s, def[i]), NULL);
                 lappend(&new, &nnew, mov);
-                if (debugopt['r']) {
-                    printf("storing ");
-                    dbglocprint(stdout, locmap[def[i]], 'x');
-                    printf(" -> ");
-                    dbglocprint(stdout, tmp, 'x');
-                    printf("\n");
-                }
             }
             for (i = 0; i < nuse; i++)
                 htdel(map, locmap[use[i]]);