-
Notifications
You must be signed in to change notification settings - Fork 13.4k
[X86][NFC] Remove duplicate feature from Znver5 processor definition #137901
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[X86][NFC] Remove duplicate feature from Znver5 processor definition #137901
Conversation
`FeatureVNNI` is already in Znver4AdditionalFeature.
@llvm/pr-subscribers-backend-x86 Author: Min-Yih Hsu (mshockwave) Changes
Found by the new TableGen warning introduced in 951292b Full diff: https://github.com/llvm/llvm-project/pull/137901.diff 1 Files Affected:
diff --git a/llvm/lib/Target/X86/X86.td b/llvm/lib/Target/X86/X86.td
index 574624291c01b..2d635835e3ff7 100644
--- a/llvm/lib/Target/X86/X86.td
+++ b/llvm/lib/Target/X86/X86.td
@@ -1591,8 +1591,7 @@ def ProcessorFeatures {
!listconcat(ZN3Features, ZN4AdditionalFeatures);
list<SubtargetFeature> ZN5Tuning = ZN4Tuning;
- list<SubtargetFeature> ZN5AdditionalFeatures = [FeatureVNNI,
- FeatureMOVDIRI,
+ list<SubtargetFeature> ZN5AdditionalFeatures = [FeatureMOVDIRI,
FeatureMOVDIR64B,
FeatureVP2INTERSECT,
FeaturePREFETCHI,
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/137/builds/17720 Here is the relevant piece of the build log for the reference
|
…lvm#137901) `FeatureVNNI` is already in Znver4AdditionalFeature. Found by the new TableGen warning introduced in 951292b
…lvm#137901) `FeatureVNNI` is already in Znver4AdditionalFeature. Found by the new TableGen warning introduced in 951292b
…lvm#137901) `FeatureVNNI` is already in Znver4AdditionalFeature. Found by the new TableGen warning introduced in 951292b
…lvm#137901) `FeatureVNNI` is already in Znver4AdditionalFeature. Found by the new TableGen warning introduced in 951292b
FeatureVNNI
is already in Znver4AdditionalFeature.Found by the new TableGen warning introduced in 951292b