From: Brian Paul Date: Tue, 30 Jan 2018 23:50:37 +0000 (-0700) Subject: svga: use opcode local var to simplify some code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1882ec4ff7ec943e9b23dc95870c2d442d00b91c;p=mesa.git svga: use opcode local var to simplify some code Reviewed-by: Charmaine Lee --- diff --git a/src/gallium/drivers/svga/svga_tgsi_vgpu10.c b/src/gallium/drivers/svga/svga_tgsi_vgpu10.c index da520be2afd..73aa78b748d 100644 --- a/src/gallium/drivers/svga/svga_tgsi_vgpu10.c +++ b/src/gallium/drivers/svga/svga_tgsi_vgpu10.c @@ -5360,8 +5360,7 @@ emit_simple(struct svga_shader_emitter_v10 *emit, unsigned i; begin_emit_instruction(emit); - emit_opcode(emit, translate_opcode(inst->Instruction.Opcode), - inst->Instruction.Saturate); + emit_opcode(emit, translate_opcode(opcode), inst->Instruction.Saturate); for (i = 0; i < op->num_dst; i++) { emit_dst_register(emit, &inst->Dst[i]); } @@ -5412,8 +5411,7 @@ emit_simple_1dst(struct svga_shader_emitter_v10 *emit, unsigned i; begin_emit_instruction(emit); - emit_opcode(emit, translate_opcode(inst->Instruction.Opcode), - inst->Instruction.Saturate); + emit_opcode(emit, translate_opcode(opcode), inst->Instruction.Saturate); for (i = 0; i < dst_count; i++) { if (i == dst_index) {