aboutsummaryrefslogtreecommitdiffstats
path: root/src/freedreno/ir3
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2020-04-23 14:01:59 -0700
committerMarge Bot <[email protected]>2020-04-27 19:35:00 +0000
commit916629f9d70d479aa1829e631792bf9ddd61004c (patch)
tree6f0b3665fa8065bdbeba3e1f5535bc3eeab04750 /src/freedreno/ir3
parent6c01152c92cca2b8133e5a116335d0ef3a6cd474 (diff)
freedreno/ir3: Fix the disasm of half-float STG dests.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736>
Diffstat (limited to 'src/freedreno/ir3')
-rw-r--r--src/freedreno/ir3/disasm-a3xx.c2
1 files changed, 1 insertions, 1 deletions
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;