[llvm] 5247a0d - [AMDGPU] Correct gfx90c feature list
Stanislav Mekhanoshin via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 18 12:40:36 PST 2021
Author: Stanislav Mekhanoshin
Date: 2021-02-18T12:40:27-08:00
New Revision: 5247a0d9e64886c4540cd4d54153d5387e13f493
URL: https://github.com/llvm/llvm-project/commit/5247a0d9e64886c4540cd4d54153d5387e13f493
DIFF: https://github.com/llvm/llvm-project/commit/5247a0d9e64886c4540cd4d54153d5387e13f493.diff
LOG: [AMDGPU] Correct gfx90c feature list
Looks like we have forced FeatureXNACK and forgot
FeatureMadMacF32Insts.
Differential Revision: https://reviews.llvm.org/D96989
Added:
Modified:
llvm/lib/Target/AMDGPU/AMDGPU.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/AMDGPU/AMDGPU.td b/llvm/lib/Target/AMDGPU/AMDGPU.td
index 8cc0d2b4e78b3..452d3bb6c9a9d 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPU.td
+++ b/llvm/lib/Target/AMDGPU/AMDGPU.td
@@ -956,9 +956,9 @@ def FeatureISAVersion9_0_C : FeatureSet<
[FeatureGFX9,
FeatureMadMixInsts,
FeatureLDSBankCount32,
- FeatureXNACK,
FeatureDsSrc2Insts,
FeatureExtendedImageInsts,
+ FeatureMadMacF32Insts,
FeatureImageGather4D16Bug]>;
// TODO: Organize more features into groups.
More information about the llvm-commits
mailing list