[llvm] [NFC][AMDGPU] Reorganize features for gfx125x (PR #175054)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 8 11:29:32 PST 2026
https://github.com/shiltian created https://github.com/llvm/llvm-project/pull/175054
None
>From ecab74840a731b625c19390c6761028ef3ded768 Mon Sep 17 00:00:00 2001
From: Shilei Tian <i at tianshilei.me>
Date: Thu, 8 Jan 2026 14:28:41 -0500
Subject: [PATCH] [NFC][AMDGPU] Reorganize features for gfx125x
---
llvm/lib/Target/AMDGPU/AMDGPU.td | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/llvm/lib/Target/AMDGPU/AMDGPU.td b/llvm/lib/Target/AMDGPU/AMDGPU.td
index e62db7c564ccd..de3ae53eb548f 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPU.td
+++ b/llvm/lib/Target/AMDGPU/AMDGPU.td
@@ -2226,8 +2226,9 @@ def FeatureISAVersion12_50 : FeatureSet<
[FeatureAddressableLocalMemorySize327680])>;
def FeatureISAVersion12_51 : FeatureSet<
- !listconcat(FeatureISAVersion12_50.Features,
- [FeatureDPALU_DPP])>;
+ !listconcat(FeatureISAVersion12_50_Common.Features,
+ [FeatureAddressableLocalMemorySize327680,
+ FeatureDPALU_DPP])>;
def FeatureISAVersion12_Generic: FeatureSet<
!listconcat(FeatureISAVersion12.Features,
More information about the llvm-commits
mailing list