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 3, 2025
1 parent c528b8c commit 71e17a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions compiler/rustc_target/src/target_features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -765,11 +765,11 @@ 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), &[]),
("frecipe", STABLE, &[]),
("lasx", STABLE, &["lsx"]),
("lbt", STABLE, &[]),
("lsx", STABLE, &["d"]),
("lvz", STABLE, &[]),
("relax", unstable(sym::loongarch_target_feature), &[]),
("ual", unstable(sym::loongarch_target_feature), &[]),
// tidy-alphabetical-end
Expand Down

0 comments on commit 71e17a0

Please sign in to comment.