1
Fork 0

Tidy got confused on rustc_const_unstable issues

This commit is contained in:
Oliver Scherer 2020-06-18 10:06:57 +02:00
parent e09b620339
commit 84f1d73182
2 changed files with 5 additions and 8 deletions

View file

@ -11,7 +11,7 @@
//! In order to make an intrinsic usable at compile-time, one needs to copy the implementation //! In order to make an intrinsic usable at compile-time, one needs to copy the implementation
//! from https://github.com/rust-lang/miri/blob/master/src/shims/intrinsics.rs to //! from https://github.com/rust-lang/miri/blob/master/src/shims/intrinsics.rs to
//! `librustc_mir/interpret/intrinsics.rs` and add a //! `librustc_mir/interpret/intrinsics.rs` and add a
//! `#[rustc_const_unstable(feature = "foo", issue = "01234")]` to the intrinsic. //! `#[rustc_const_unstable(feature = "foo2", issue = "01234")]` to the intrinsic.
//! //!
//! If an intrinsic is supposed to be used from a `const fn` with a `rustc_const_stable` attribute, //! If an intrinsic is supposed to be used from a `const fn` with a `rustc_const_stable` attribute,
//! the intrinsic's attribute must be `rustc_const_stable`, too. Such a change should not be done //! the intrinsic's attribute must be `rustc_const_stable`, too. Such a change should not be done
@ -1012,7 +1012,7 @@ extern "rust-intrinsic" {
/// ///
/// The stabilized version of this intrinsic is /// The stabilized version of this intrinsic is
/// [`std::any::type_name`](../../std/any/fn.type_name.html) /// [`std::any::type_name`](../../std/any/fn.type_name.html)
#[rustc_const_unstable(feature = "const_type_name", issue = "none")] #[rustc_const_unstable(feature = "const_type_name", issue = "63084")]
pub fn type_name<T: ?Sized>() -> &'static str; pub fn type_name<T: ?Sized>() -> &'static str;
/// Gets an identifier which is globally unique to the specified type. This /// Gets an identifier which is globally unique to the specified type. This
@ -1021,7 +1021,7 @@ extern "rust-intrinsic" {
/// ///
/// The stabilized version of this intrinsic is /// The stabilized version of this intrinsic is
/// [`std::any::TypeId::of`](../../std/any/struct.TypeId.html#method.of) /// [`std::any::TypeId::of`](../../std/any/struct.TypeId.html#method.of)
#[rustc_const_unstable(feature = "const_type_id", issue = "none")] #[rustc_const_unstable(feature = "const_type_id", issue = "41875")]
pub fn type_id<T: ?Sized + 'static>() -> u64; pub fn type_id<T: ?Sized + 'static>() -> u64;
/// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited: /// A guard for unsafe functions that cannot ever be executed if `T` is uninhabited:
@ -1931,7 +1931,7 @@ extern "rust-intrinsic" {
pub fn nontemporal_store<T>(ptr: *mut T, val: T); pub fn nontemporal_store<T>(ptr: *mut T, val: T);
/// See documentation of `<*const T>::offset_from` for details. /// See documentation of `<*const T>::offset_from` for details.
#[rustc_const_unstable(feature = "const_ptr_offset_from", issue = "none")] #[rustc_const_unstable(feature = "const_ptr_offset_from", issue = "41079")]
pub fn ptr_offset_from<T>(ptr: *const T, base: *const T) -> isize; pub fn ptr_offset_from<T>(ptr: *const T, base: *const T) -> isize;
/// Internal hook used by Miri to implement unwinding. /// Internal hook used by Miri to implement unwinding.

View file

@ -444,10 +444,7 @@ fn map_lib_features(
level: Status::Unstable, level: Status::Unstable,
since: None, since: None,
has_gate_test: false, has_gate_test: false,
// FIXME(#57563): #57563 is now used as a common tracking issue, tracking_issue: find_attr_val(line, "issue").and_then(handle_issue_none),
// although we would like to have specific tracking issues for each
// `rustc_const_unstable` in the future.
tracking_issue: NonZeroU32::new(57563),
}; };
mf(Ok((feature_name, feature)), file, i + 1); mf(Ok((feature_name, feature)), file, i + 1);
continue; continue;