Skip to content

Commit e7f601d

Browse files
committed
Add the riscv_ext_intrinsics feature for rust-lang#114544
1 parent fbc11e9 commit e7f601d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

compiler/rustc_feature/src/active.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,8 @@ declare_features! (
541541
(active, return_position_impl_trait_in_trait, "1.65.0", Some(91611), None),
542542
/// Allows bounding the return type of AFIT/RPITIT.
543543
(incomplete, return_type_notation, "1.70.0", Some(109417), None),
544+
/// Adds the intrinsics for all RISC-V Ratified Extensions.
545+
(incomplete, riscv_ext_intrinsics, "1.71.0", Some(114544), None),
544546
/// Allows `extern "rust-cold"`.
545547
(active, rust_cold_cc, "1.63.0", Some(97544), None),
546548
/// Allows the use of SIMD types in functions declared in `extern` blocks.

compiler/rustc_span/src/symbol.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,7 @@ symbols! {
12361236
rhs,
12371237
rintf32,
12381238
rintf64,
1239+
riscv_ext_intrinsics,
12391240
riscv_target_feature,
12401241
rlib,
12411242
rotate_left,

0 commit comments

Comments
 (0)