From 1882ec4ff7ec943e9b23dc95870c2d442d00b91c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 30 Jan 2018 16:50:37 -0700 Subject: [PATCH] svga: use opcode local var to simplify some code Reviewed-by: Charmaine Lee --- src/gallium/drivers/svga/svga_tgsi_vgpu10.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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) { -- 2.30.2