Skip to content
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

Update aarch64 target feature docs to match LLVM #121145

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions compiler/rustc_target/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ARM_ALLOWED_FEATURES: &[(&str, Stability)] = &[

const AARCH64_ALLOWED_FEATURES: &[(&str, Stability)] = &[
// tidy-alphabetical-start
// FEAT_AES
// FEAT_AES & FEAT_PMULL
("aes", Stable),
// FEAT_BF16
("bf16", Stable),
Expand Down Expand Up @@ -124,7 +124,7 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Stability)] = &[
("lor", Stable),
// FEAT_LSE
("lse", Stable),
// FEAT_MTE
// FEAT_MTE & FEAT_MTE2
("mte", Stable),
// FEAT_AdvSimd & FEAT_FP
("neon", Stable),
Expand All @@ -138,7 +138,7 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Stability)] = &[
("pmuv3", Stable),
// FEAT_RAND
("rand", Stable),
// FEAT_RAS
// FEAT_RAS & FEAT_RASv1p1
("ras", Stable),
// FEAT_RCPC
("rcpc", Stable),
Expand All @@ -156,7 +156,7 @@ const AARCH64_ALLOWED_FEATURES: &[(&str, Stability)] = &[
("sm4", Stable),
// FEAT_SPE
("spe", Stable),
// FEAT_SSBS
// FEAT_SSBS & FEAT_SSBS2
("ssbs", Stable),
// FEAT_SVE
("sve", Stable),
Expand Down
Loading