Skip to content

Commit

Permalink
Partially stabilize LoongArch target features
Browse files Browse the repository at this point in the history
  • Loading branch information
heiher committed Jan 2, 2025
1 parent c528b8c commit 4c59f0d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions compiler/rustc_target/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -765,13 +765,13 @@ const LOONGARCH_FEATURES: &[(&str, StabilityUncomputed, ImpliedFeatures)] = &[
// tidy-alphabetical-start
("d", unstable(sym::loongarch_target_feature), &["f"]),
("f", unstable(sym::loongarch_target_feature), &[]),
("frecipe", unstable(sym::loongarch_target_feature), &[]),
("lasx", unstable(sym::loongarch_target_feature), &["lsx"]),
("lbt", unstable(sym::loongarch_target_feature), &[]),
("lsx", unstable(sym::loongarch_target_feature), &["d"]),
("lvz", unstable(sym::loongarch_target_feature), &[]),
("relax", unstable(sym::loongarch_target_feature), &[]),
("ual", unstable(sym::loongarch_target_feature), &[]),
("frecipe", STABLE, &[]),
("lasx", STABLE, &["lsx"]),
("lbt", STABLE, &[]),
("lsx", STABLE, &["d"]),
("lvz", STABLE, &[]),
("relax", STABLE, &[]),
("ual", STABLE, &[]),
// tidy-alphabetical-end
];

Expand Down

0 comments on commit 4c59f0d

Please sign in to comment.