mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 14:40:10 +01:00
nak: Legalize OpBMsk
Fixes: bb10f7f5da ("nak: Implement nir_op_bfm")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27177>
This commit is contained in:
parent
e3098bb232
commit
458d4150df
1 changed files with 4 additions and 1 deletions
|
|
@ -439,7 +439,10 @@ fn legalize_sm70_instr(
|
|||
}
|
||||
copy_alu_src_if_not_reg(b, src0, SrcType::F64);
|
||||
}
|
||||
Op::BMsk(_) | Op::BRev(_) | Op::Flo(_) => (),
|
||||
Op::BMsk(op) => {
|
||||
copy_alu_src_if_not_reg(b, &mut op.pos, SrcType::ALU);
|
||||
}
|
||||
Op::BRev(_) | Op::Flo(_) => (),
|
||||
Op::IAbs(_) | Op::INeg(_) => (),
|
||||
Op::IAdd3(op) => {
|
||||
let [ref mut src0, ref mut src1, ref mut src2] = op.srcs;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue