Module: Mesa Branch: master Commit: 492af22fb469190a6466ecbba4d4e3ce6a5c1715 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=492af22fb469190a6466ecbba4d4e3ce6a5c1715
Author: Matt Turner <[email protected]> Date: Mon May 19 14:08:37 2014 -0700 i965: Remove useless typo'd debugging messages. Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_eu_emit.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index 3bf2de1..f831413 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
