diff options
author | Rob Clark <[email protected]> | 2015-02-03 15:52:53 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2015-02-21 17:11:01 -0500 |
commit | 68552266535747bad1eff34d856c43158398b9bf (patch) | |
tree | 52991070e268eb7d3442c7a59e62a7d709ccf0a2 /src | |
parent | 49a938a265f5959c9b558995cc658f80acb6eb18 (diff) |
freedreno/a2xx: fix increment in assert
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88883
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/freedreno/a2xx/ir-a2xx.c | 3 |
1 files changed, 2 insertions, 1 deletions
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++]; } |