From 73e85c669117ffed977979ebdc8696cd46f4897e Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Tue, 3 Oct 2023 11:31:14 +0200 Subject: [PATCH] aco: assume new generations are unsupported by clrx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit clrx hasn't seen any changes since 2021. I guess the only reson to keep it is GFX6 support. Reviewed-by: Rhys Perry Reviewed-by: Timur Kristóf Part-of: --- src/amd/compiler/aco_print_asm.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/amd/compiler/aco_print_asm.cpp b/src/amd/compiler/aco_print_asm.cpp index 226d56785cd..3c6fac96cfc 100644 --- a/src/amd/compiler/aco_print_asm.cpp +++ b/src/amd/compiler/aco_print_asm.cpp @@ -148,9 +148,7 @@ to_clrx_device_name(amd_gfx_level gfx_level, radeon_family family) case CHIP_NAVI12: return "gfx1011"; default: return nullptr; } - case GFX10_3: - case GFX11: return nullptr; - default: unreachable("Invalid chip class!"); return nullptr; + default: return nullptr; } }