aco: fix missing SCC for p_interp_gfx11 in emit_interp_mov_instr()
Fixes: 369c9b6425 ("aco: fix p_interp_gfx11 to not overwrite SCC")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19777>
This commit is contained in:
committed by
Marge Bot
parent
c567e5528f
commit
5a3cc2d453
@@ -5408,7 +5408,7 @@ emit_interp_mov_instr(isel_context* ctx, unsigned idx, unsigned component, unsig
|
||||
if (in_exec_divergent_or_in_loop(ctx)) {
|
||||
Operand prim_mask_op = bld.m0(prim_mask);
|
||||
prim_mask_op.setLateKill(true); /* we don't want the bld.lm definition to use m0 */
|
||||
bld.pseudo(aco_opcode::p_interp_gfx11, Definition(dst), bld.def(bld.lm),
|
||||
bld.pseudo(aco_opcode::p_interp_gfx11, Definition(dst), bld.def(bld.lm), bld.def(s1, scc),
|
||||
Operand(v1.as_linear()), Operand::c32(idx), Operand::c32(component),
|
||||
Operand::c32(dpp_ctrl), prim_mask_op);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user