From: Rob Clark Date: Tue, 3 Feb 2015 20:52:53 +0000 (-0500) Subject: freedreno/a2xx: fix increment in assert X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68552266535747bad1eff34d856c43158398b9bf;p=mesa.git freedreno/a2xx: fix increment in assert Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88883 Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c b/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c index cff5a27fce0..2b62b3ae23c 100644 --- a/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c +++ b/src/gallium/drivers/freedreno/a2xx/ir-a2xx.c @@ -439,7 +439,8 @@ static int instr_emit_alu(struct ir2_instruction *instr, uint32_t *dwords, assert(sdst_reg->flags == dst_reg->flags); if (src3_reg) { - assert(src3_reg == instr->regs[reg++]); + assert(src3_reg == instr->regs[reg]); + reg++; } else { src3_reg = instr->regs[reg++]; }