For this series, Reviewed-by: Charmaine Lee <charmai...@vmware.com> ________________________________________ From: Brian Paul <bri...@vmware.com> Sent: Tuesday, January 30, 2018 7:36:27 PM To: mesa-dev@lists.freedesktop.org Cc: Charmaine Lee; Neha Bhende Subject: [PATCH 2/2] svga: use opcode local var to simplify some code
--- 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 da520be..73aa78b 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.7.4 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev