mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-08 11:50:29 +01:00
r600/sb: lds ops have no dst register.
Although these are op3s they don't have a dst reg. Acked-By: Roland Scheidegger <sroland@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
09c1c13c44
commit
1ca2eb3bf3
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue