From: Dave Airlie Date: Wed, 10 Jan 2018 03:56:37 +0000 (+0000) Subject: r600/sb: lds ops have no dst register. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ca2eb3bf32dbb6781343d82ee4c72caa4c4e8d5;p=mesa.git r600/sb: lds ops have no dst register. Although these are op3s they don't have a dst reg. Acked-By: Roland Scheidegger Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp index 72a1b24467d..3b5d9e77b2e 100644 --- a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp +++ b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp @@ -232,7 +232,7 @@ static void print_dst(sb_ostream &s, bc_alu &alu) reg_char = 'T'; } - if (alu.write_mask || alu.op_ptr->src_count == 3) { + if (alu.write_mask || (alu.op_ptr->src_count == 3 && alu.op < LDS_OP2_LDS_ADD)) { s << reg_char; print_sel(s, sel, alu.dst_rel, alu.index_mode, 0); } else {