From: Eric Anholt Date: Thu, 23 Apr 2020 21:01:59 +0000 (-0700) Subject: freedreno/ir3: Fix the disasm of half-float STG dests. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=916629f9d70d479aa1829e631792bf9ddd61004c;p=mesa.git freedreno/ir3: Fix the disasm of half-float STG dests. Part-of: --- diff --git a/src/freedreno/ir3/disasm-a3xx.c b/src/freedreno/ir3/disasm-a3xx.c index 9d63add3d2a..02335e46ab1 100644 --- a/src/freedreno/ir3/disasm-a3xx.c +++ b/src/freedreno/ir3/disasm-a3xx.c @@ -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;