[llvm] [AMDGPU] Move FeatureMaxHardClauseLength32 into FeatureISAVersion12. NFC. (PR #95808)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 17 09:14:26 PDT 2024
https://github.com/jayfoad created https://github.com/llvm/llvm-project/pull/95808
None
>From 9e63a483243ef24ce3cfcf66bef2ca1986aa7d30 Mon Sep 17 00:00:00 2001
From: Jay Foad <jay.foad at amd.com>
Date: Mon, 17 Jun 2024 17:11:05 +0100
Subject: [PATCH] [AMDGPU] Move FeatureMaxHardClauseLength32 into
FeatureISAVersion12. NFC.
---
llvm/lib/Target/AMDGPU/AMDGPU.td | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/llvm/lib/Target/AMDGPU/AMDGPU.td b/llvm/lib/Target/AMDGPU/AMDGPU.td
index d0d7a9dc17247..65c4abef2bf8a 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPU.td
+++ b/llvm/lib/Target/AMDGPU/AMDGPU.td
@@ -1168,8 +1168,7 @@ def FeatureGFX12 : GCNSubtargetFeatureGeneration<"GFX12",
FeatureNoDataDepHazard, FeaturePkFmacF16Inst,
FeatureA16, FeatureFastDenormalF32, FeatureG16,
FeatureUnalignedBufferAccess, FeatureUnalignedDSAccess,
- FeatureTrue16BitInsts, FeatureDefaultComponentBroadcast,
- FeatureMaxHardClauseLength32
+ FeatureTrue16BitInsts, FeatureDefaultComponentBroadcast
]
>;
@@ -1572,7 +1571,8 @@ def FeatureISAVersion12 : FeatureSet<
FeatureHasRestrictedSOffset,
FeatureVGPRSingleUseHintInsts,
FeatureScalarDwordx3Loads,
- FeatureDPPSrc1SGPR]>;
+ FeatureDPPSrc1SGPR,
+ FeatureMaxHardClauseLength32]>;
def FeatureISAVersion12_Generic: FeatureSet<
!listconcat(FeatureISAVersion12.Features,
More information about the llvm-commits
mailing list