pan/bi: s/t0/t1/ in bi_disasm_dest_add()
The ADD unit stores its result in t1 not t0. Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7408>
This commit is contained in:
committed by
Marge Bot
parent
47131919d8
commit
07f1df51aa
@@ -226,10 +226,10 @@ bi_disasm_dest_add(FILE *fp, struct bifrost_regs *next_regs, bool last)
|
||||
struct bifrost_reg_ctrl ctrl = DecodeRegCtrl(fp, *next_regs, last);
|
||||
|
||||
if (ctrl.slot23.slot3 >= BIFROST_OP_WRITE && !ctrl.slot23.slot3_fma) {
|
||||
fprintf(fp, "r%u:t0", next_regs->reg3);
|
||||
fprintf(fp, "r%u:t1", next_regs->reg3);
|
||||
bi_disasm_dest_mask(fp, ctrl.slot23.slot3);
|
||||
} else
|
||||
fprintf(fp, "t0");
|
||||
fprintf(fp, "t1");
|
||||
}
|
||||
|
||||
static void dump_const_imm(FILE *fp, uint32_t imm)
|
||||
|
||||
Reference in New Issue
Block a user