mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
i965: Remove useless typo'd debugging messages.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
f3cb2e6ed7
commit
492af22fb4
1 changed files with 0 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue