mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
nak/legalize: Explicitly ignore OpPhiSrcs and OpPhiDsts
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29591>
This commit is contained in:
parent
66a5608c11
commit
b47b8643b7
1 changed files with 2 additions and 1 deletions
|
|
@ -931,7 +931,8 @@ fn legalize_sm70_instr(
|
|||
Op::Vote(op) => {
|
||||
copy_src_if_upred(b, &mut op.pred);
|
||||
}
|
||||
Op::Copy(_) => (), // Nothing to do
|
||||
Op::Copy(_) => (), // Nothing to do
|
||||
Op::PhiSrcs(_) | Op::PhiDsts(_) => (), // Nothing to do
|
||||
_ => {
|
||||
let src_types = instr.src_types();
|
||||
for (i, src) in instr.srcs_mut().iter_mut().enumerate() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue