i965: Remove useless typo'd debugging messages.
authorMatt Turner <mattst88@gmail.com>
Mon, 19 May 2014 21:08:37 +0000 (14:08 -0700)
committerMatt Turner <mattst88@gmail.com>
Sun, 25 May 2014 06:03:24 +0000 (23:03 -0700)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_eu_emit.c

index 3bf2de14565a62d4f44b8f3048792207c1e87a00..f831413cd477d30f9e7aeb6e3129a8b9ce0e1f47 100644 (file)
@@ -821,15 +821,9 @@ brw_next_insn(struct brw_compile *p, unsigned opcode)
    struct brw_instruction *insn;
 
    if (p->nr_insn + 1 > p->store_size) {
-      if (0) {
-         fprintf(stderr, "incresing the store size to %d\n",
-                 p->store_size << 1);
-      }
       p->store_size <<= 1;
       p->store = reralloc(p->mem_ctx, p->store,
                           struct brw_instruction, p->store_size);
-      if (!p->store)
-         assert(!"realloc eu store memeory failed");
    }
 
    p->next_insn_offset += 16;