mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
nak: special case PhiDsts as not uniform
Fixes: ab72be6c5e ("nak,compiler: Move AsSlice to common code")
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30607>
This commit is contained in:
parent
c8c46bf900
commit
37d0cdc36f
1 changed files with 4 additions and 1 deletions
|
|
@ -6597,7 +6597,10 @@ impl Instr {
|
|||
}
|
||||
|
||||
pub fn is_uniform(&self) -> bool {
|
||||
self.op.is_uniform()
|
||||
match &self.op {
|
||||
Op::PhiDsts(_) => false,
|
||||
op => op.is_uniform(),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn has_fixed_latency(&self, sm: u8) -> bool {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue