Skip to content
/ rust Public
forked from rust-lang/rust

Commit efdcf91

Browse files
authored
Rollup merge of rust-lang#135015 - heiher:stabilize-loongarch-target-features, r=Amanieu
Partially stabilize LoongArch target features Stabilization PR for the LoongArch target features. This PR stabilizes some of the target features tracked by rust-lang#44839. Specifically, this PR stabilizes the following target features: * f * d * frecipe * lasx * lbt * lsx * lvz Docs PR: rust-lang/reference#1707 r? `@Amanieu`
2 parents 667247d + 1f2536f commit efdcf91

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
@@ -693,17 +693,17 @@ static CSKY_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
693693

694694
static LOONGARCH_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
695695
// tidy-alphabetical-start
696-
("d", Unstable(sym::loongarch_target_feature), &["f"]),
696+
("d", Stable, &["f"]),
697697
("div32", Unstable(sym::loongarch_target_feature), &[]),
698-
("f", Unstable(sym::loongarch_target_feature), &[]),
699-
("frecipe", Unstable(sym::loongarch_target_feature), &[]),
698+
("f", Stable, &[]),
699+
("frecipe", Stable, &[]),
700700
("lam-bh", Unstable(sym::loongarch_target_feature), &[]),
701701
("lamcas", Unstable(sym::loongarch_target_feature), &[]),
702-
("lasx", Unstable(sym::loongarch_target_feature), &["lsx"]),
703-
("lbt", Unstable(sym::loongarch_target_feature), &[]),
702+
("lasx", Stable, &["lsx"]),
703+
("lbt", Stable, &[]),
704704
("ld-seq-sa", Unstable(sym::loongarch_target_feature), &[]),
705-
("lsx", Unstable(sym::loongarch_target_feature), &["d"]),
706-
("lvz", Unstable(sym::loongarch_target_feature), &[]),
705+
("lsx", Stable, &["d"]),
706+
("lvz", Stable, &[]),
707707
("relax", Unstable(sym::loongarch_target_feature), &[]),
708708
("scq", Unstable(sym::loongarch_target_feature), &[]),
709709
("ual", Unstable(sym::loongarch_target_feature), &[]),

0 commit comments

Comments
 (0)