freedreno/ir3: Fix the disasm of half-float STG dests.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736>
This commit is contained in:
Eric Anholt 2020-04-23 14:01:59 -07:00 committed by Marge Bot
parent 6c01152c92
commit 916629f9d7
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ static void print_instr_cat6_a3xx(struct disasm_ctx *ctx, instr_t *instr)
case OPC_STP:
case OPC_STLW:
case OPC_STIB:
dst.full = true;
dst.full = type_size(cat6->type) == 32;
src1.full = type_size(cat6->type) == 32;
src2.full = type_size(cat6->type) == 32;
break;