nak/copy_prop: Propagate OpSel with a selector of SrcRef::Zero

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30218>
This commit is contained in:
Faith Ekstrand
2024-07-16 16:03:32 -05:00
committed by Marge Bot
parent cc33cafcac
commit f949c00170
+1 -1
View File
@@ -600,7 +600,7 @@ impl CopyPropPass {
if prmt.mode != PrmtMode::Index {
return;
}
let SrcRef::Imm32(sel) = prmt.sel.src_ref else {
let Some(sel) = prmt.sel.as_u32() else {
return;
};