i965: Disable the debug printf I added for FS disasm.
authorEric Anholt <eric@anholt.net>
Mon, 18 Oct 2010 17:59:46 +0000 (10:59 -0700)
committerEric Anholt <eric@anholt.net>
Mon, 18 Oct 2010 19:56:44 +0000 (12:56 -0700)
src/mesa/drivers/dri/i965/brw_fs.cpp

index 85fd6d06b9296757711251c2135721a1329bc81e..c9e109871adef7cb72f116b6e076f6089e53a6b9 100644 (file)
@@ -3288,12 +3288,14 @@ brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c)
            if (last_annotation_string)
               printf("   %s\n", last_annotation_string);
         }
+        if (0) {
+           printf("0x%08x 0x%08x 0x%08x 0x%08x ",
+                  ((uint32_t *)&p->store[i])[3],
+                  ((uint32_t *)&p->store[i])[2],
+                  ((uint32_t *)&p->store[i])[1],
+                  ((uint32_t *)&p->store[i])[0]);
+        }
         brw_disasm(stdout, &p->store[i], intel->gen);
-        printf("0x%08x 0x%08x 0x%08x 0x%08x\n",
-               ((uint32_t *)&p->store[i])[3],
-               ((uint32_t *)&p->store[i])[2],
-               ((uint32_t *)&p->store[i])[1],
-               ((uint32_t *)&p->store[i])[0]);
       }
       printf("\n");
    }