From 132dfacdcbefdfa7094dee2ec36e6770edb1c8e9 Mon Sep 17 00:00:00 2001 From: Connor Abbott Date: Fri, 18 Jun 2021 16:12:31 +0200 Subject: [PATCH] freedreno/tests: Convert to srcs/dsts Part-of: --- src/freedreno/ir3/tests/delay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/ir3/tests/delay.c b/src/freedreno/ir3/tests/delay.c index 2da619dcca7..4d08d5b287a 100644 --- a/src/freedreno/ir3/tests/delay.c +++ b/src/freedreno/ir3/tests/delay.c @@ -123,7 +123,7 @@ fixup_wrmask(struct ir3 *ir) struct ir3_block *block = ir3_start_block(ir); foreach_instr_safe (instr, &block->instr_list) { - instr->regs[0]->wrmask = MASK(instr->repeat + 1); + instr->dsts[0]->wrmask = MASK(instr->repeat + 1); foreach_src (reg, instr) { if (reg->flags & (IR3_REG_CONST | IR3_REG_IMMED)) continue;