nak: Display memory type at the end for load/store ops

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26291>
This commit is contained in:
Faith Ekstrand 2023-11-20 14:58:58 -06:00 committed by Marge Bot
parent 6f76f4db9f
commit 3a20beab03

View file

@ -1909,10 +1909,10 @@ impl fmt::Display for MemAccess {
write!(
f,
"{}{}{}{}",
self.mem_type,
self.space,
self.order,
self.eviction_priority
self.eviction_priority,
self.mem_type,
)
}
}