From: Eric Engestrom Date: Sat, 30 Jul 2016 00:23:09 +0000 (+0100) Subject: freedreno/a2xx: remove duplicate assignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3563c4d16138360fd8756576e0c9c825ed6cec86;p=mesa.git freedreno/a2xx: remove duplicate assignment CovID: 1362445, 1362446 Signed-off-by: Eric Engestrom Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h b/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h index 822e5ec4c23..36ed2043b2f 100644 --- a/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h +++ b/src/gallium/drivers/freedreno/a2xx/ir-a2xx.h @@ -158,7 +158,7 @@ static inline struct ir2_instruction * ir2_instr_create_vtx_fetch(struct ir2_cf *cf, int ci, int cis, enum a2xx_sq_surfaceformat fmt, bool is_signed, int stride) { - struct ir2_instruction *instr = instr = ir2_instr_create(cf, IR2_FETCH); + struct ir2_instruction *instr = ir2_instr_create(cf, IR2_FETCH); instr->fetch.opc = VTX_FETCH; instr->fetch.const_idx = ci; instr->fetch.const_idx_sel = cis; @@ -170,7 +170,7 @@ ir2_instr_create_vtx_fetch(struct ir2_cf *cf, int ci, int cis, static inline struct ir2_instruction * ir2_instr_create_tex_fetch(struct ir2_cf *cf, int ci) { - struct ir2_instruction *instr = instr = ir2_instr_create(cf, IR2_FETCH); + struct ir2_instruction *instr = ir2_instr_create(cf, IR2_FETCH); instr->fetch.opc = TEX_FETCH; instr->fetch.const_idx = ci; return instr;