From 3a20beab03d24eb992b1ea8e20b563c22ab9d801 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Mon, 20 Nov 2023 14:58:58 -0600 Subject: [PATCH] nak: Display memory type at the end for load/store ops Part-of: --- src/nouveau/compiler/nak_ir.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nouveau/compiler/nak_ir.rs b/src/nouveau/compiler/nak_ir.rs index 4d2f3dff7bc..03e9a21345e 100644 --- a/src/nouveau/compiler/nak_ir.rs +++ b/src/nouveau/compiler/nak_ir.rs @@ -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, ) } }