Skip to content

Commit 5ef29a5

Browse files
committed
Rename
1 parent 84819ef commit 5ef29a5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

llvm/lib/Target/AMDGPU/AMDGPU.td

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -788,9 +788,9 @@ def FeatureFlatAtomicFaddF32Inst
788788
"Has flat_atomic_add_f32 instruction"
789789
>;
790790

791-
def FeatureMemoryAtomicFaddF32DenormalSupport
791+
def FeatureMemoryAtomicFAddF32DenormalSupport
792792
: SubtargetFeature<"memory-atomic-fadd-f32-denormal-support",
793-
"HasAtomicMemoryAtomicFaddF32DenormalSupport",
793+
"HasMemoryAtomicFaddF32DenormalSupport",
794794
"true",
795795
"global/flat/buffer atomic fadd for float supports denormal handling"
796796
>;
@@ -1435,7 +1435,7 @@ def FeatureISAVersion9_4_Common : FeatureSet<
14351435
FeatureAtomicFMinFMaxF64GlobalInsts,
14361436
FeatureAtomicFMinFMaxF64FlatInsts,
14371437
FeatureAgentScopeFineGrainedRemoteMemoryAtomics,
1438-
FeatureMemoryAtomicFaddF32DenormalSupport
1438+
FeatureMemoryAtomicFAddF32DenormalSupport
14391439
]>;
14401440

14411441
def FeatureISAVersion9_4_0 : FeatureSet<
@@ -1548,7 +1548,7 @@ def FeatureISAVersion11_Common : FeatureSet<
15481548
FeatureImageInsts,
15491549
FeaturePackedTID,
15501550
FeatureVcmpxPermlaneHazard,
1551-
FeatureMemoryAtomicFaddF32DenormalSupport]>;
1551+
FeatureMemoryAtomicFAddF32DenormalSupport]>;
15521552

15531553
// There are few workarounds that need to be
15541554
// added to all targets. This pessimizes codegen
@@ -1641,7 +1641,7 @@ def FeatureISAVersion12 : FeatureSet<
16411641
FeatureDPPSrc1SGPR,
16421642
FeatureMaxHardClauseLength32,
16431643
Feature1_5xVGPRs,
1644-
FeatureMemoryAtomicFaddF32DenormalSupport
1644+
FeatureMemoryAtomicFAddF32DenormalSupport
16451645
]>;
16461646

16471647
def FeatureISAVersion12_Generic: FeatureSet<

llvm/lib/Target/AMDGPU/GCNSubtarget.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class GCNSubtarget final : public AMDGPUGenSubtargetInfo,
167167
bool HasAtomicFlatPkAdd16Insts = false;
168168
bool HasAtomicFaddRtnInsts = false;
169169
bool HasAtomicFaddNoRtnInsts = false;
170-
bool HasAtomicMemoryAtomicFaddF32DenormalSupport = false;
170+
bool HasMemoryAtomicFaddF32DenormalSupport = false;
171171
bool HasAtomicBufferGlobalPkAddF16NoRtnInsts = false;
172172
bool HasAtomicBufferGlobalPkAddF16Insts = false;
173173
bool HasAtomicCSubNoRtnInsts = false;
@@ -876,7 +876,7 @@ class GCNSubtarget final : public AMDGPUGenSubtargetInfo,
876876
/// \return true if the target's flat, global, and buffer atomic fadd for
877877
/// float supports denormal handling.
878878
bool hasMemoryAtomicFaddF32DenormalSupport() const {
879-
return HasAtomicMemoryAtomicFaddF32DenormalSupport;
879+
return HasMemoryAtomicFaddF32DenormalSupport;
880880
}
881881

882882
/// \return true if atomic operations targeting fine-grained memory work

0 commit comments

Comments
 (0)