i965: Remove useless typo'd debugging messages.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner 2014-05-19 14:08:37 -07:00
parent f3cb2e6ed7
commit 492af22fb4

View 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;