diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index a9a029d606d6f..b139c82753d48 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -2913,7 +2913,7 @@ impl NonNull { /// some other means. #[stable(feature = "nonnull", since = "1.25.0")] #[inline] - #[cfg_attr(not(stage0), rustc_const_unstable(feature = "const_ptr_nonnull"))] + #[rustc_const_unstable(feature = "const_ptr_nonnull")] pub const fn dangling() -> Self { unsafe { let ptr = mem::align_of::() as *mut T; @@ -2977,7 +2977,7 @@ impl NonNull { /// Cast to a pointer of another type #[stable(feature = "nonnull_cast", since = "1.27.0")] #[inline] - #[cfg_attr(not(stage0), rustc_const_unstable(feature = "const_ptr_nonnull"))] + #[rustc_const_unstable(feature = "const_ptr_nonnull")] pub const fn cast(self) -> NonNull { unsafe { NonNull::new_unchecked(self.as_ptr() as *mut U) diff --git a/src/libsyntax_pos/lib.rs b/src/libsyntax_pos/lib.rs index f4771a52034d8..48d087ee43cd5 100644 --- a/src/libsyntax_pos/lib.rs +++ b/src/libsyntax_pos/lib.rs @@ -17,7 +17,6 @@ #![feature(rustc_attrs)] #![feature(specialization)] #![feature(step_trait)] -#![cfg_attr(not(stage0), feature(stdsimd))] use serialize::{Encodable, Decodable, Encoder, Decoder}; diff --git a/src/stage0.txt b/src/stage0.txt index 274c0f90442f6..43610f9068f57 100644 --- a/src/stage0.txt +++ b/src/stage0.txt @@ -12,7 +12,7 @@ # source tarball for a stable release you'll likely see `1.x.0` for rustc and # `0.x.0` for Cargo where they were released on `date`. -date: 2019-02-27 +date: 2019-03-20 rustc: beta cargo: beta