From 0c92d2191b9bd20bde7f2ebf0c954db520303057 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Wed, 25 Feb 2026 08:19:38 +0100 Subject: [PATCH] nak/nvdisasm_tests: fix offset stride for gens older than Turing Reviewed-by: Mel Henning Part-of: --- src/nouveau/compiler/nak/nvdisasm_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/compiler/nak/nvdisasm_tests.rs b/src/nouveau/compiler/nak/nvdisasm_tests.rs index 2e3d7a5361b..fbcf7c82013 100644 --- a/src/nouveau/compiler/nak/nvdisasm_tests.rs +++ b/src/nouveau/compiler/nak/nvdisasm_tests.rs @@ -324,7 +324,7 @@ pub fn test_ld_st_atom() { MemSpace::Shared => MemEvictionPriority::Normal, MemSpace::Local => MemEvictionPriority::Normal, }; - if space != MemSpace::Shared + if (space != MemSpace::Shared || sm < 75) && addr_stride != OffsetStride::X1 { continue;