Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4c604d

Browse files
committedMar 18, 2025
Partially stabilize LoongArch target features
1 parent 493c38b commit f4c604d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎compiler/rustc_target/src/target_features.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -602,17 +602,17 @@ static CSKY_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
602602

603603
static LOONGARCH_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
604604
// tidy-alphabetical-start
605-
("d", Unstable(sym::loongarch_target_feature), &["f"]),
605+
("d", Stable, &["f"]),
606606
("div32", Unstable(sym::loongarch_target_feature), &[]),
607-
("f", Unstable(sym::loongarch_target_feature), &[]),
608-
("frecipe", Unstable(sym::loongarch_target_feature), &[]),
607+
("f", Stable, &[]),
608+
("frecipe", Stable, &[]),
609609
("lam-bh", Unstable(sym::loongarch_target_feature), &[]),
610610
("lamcas", Unstable(sym::loongarch_target_feature), &[]),
611-
("lasx", Unstable(sym::loongarch_target_feature), &["lsx"]),
612-
("lbt", Unstable(sym::loongarch_target_feature), &[]),
611+
("lasx", Stable, &["lsx"]),
612+
("lbt", Stable, &[]),
613613
("ld-seq-sa", Unstable(sym::loongarch_target_feature), &[]),
614-
("lsx", Unstable(sym::loongarch_target_feature), &["d"]),
615-
("lvz", Unstable(sym::loongarch_target_feature), &[]),
614+
("lsx", Stable, &["d"]),
615+
("lvz", Stable, &[]),
616616
("relax", Unstable(sym::loongarch_target_feature), &[]),
617617
("scq", Unstable(sym::loongarch_target_feature), &[]),
618618
("ual", Unstable(sym::loongarch_target_feature), &[]),

0 commit comments

Comments
 (0)
Failed to load comments.