Skip to content

Commit 07d3508

Browse files
committed
Auto merge of #59434 - Centril:bootstrap-to-2019-03-20, r=Mark-Simulacrum
Bump bootstrap compiler to 2019-03-20 Includes #59295 and by extension #59047, which unblocks #58253, #58837, and possibly #59336, and so therefore: @bors p=50 r? @Mark-Simulacrum cc @pietroalbini
2 parents 54479c6 + d976dbe commit 07d3508

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/libcore/ptr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2913,7 +2913,7 @@ impl<T: Sized> NonNull<T> {
29132913
/// some other means.
29142914
#[stable(feature = "nonnull", since = "1.25.0")]
29152915
#[inline]
2916-
#[cfg_attr(not(stage0), rustc_const_unstable(feature = "const_ptr_nonnull"))]
2916+
#[rustc_const_unstable(feature = "const_ptr_nonnull")]
29172917
pub const fn dangling() -> Self {
29182918
unsafe {
29192919
let ptr = mem::align_of::<T>() as *mut T;
@@ -2977,7 +2977,7 @@ impl<T: ?Sized> NonNull<T> {
29772977
/// Cast to a pointer of another type
29782978
#[stable(feature = "nonnull_cast", since = "1.27.0")]
29792979
#[inline]
2980-
#[cfg_attr(not(stage0), rustc_const_unstable(feature = "const_ptr_nonnull"))]
2980+
#[rustc_const_unstable(feature = "const_ptr_nonnull")]
29812981
pub const fn cast<U>(self) -> NonNull<U> {
29822982
unsafe {
29832983
NonNull::new_unchecked(self.as_ptr() as *mut U)

src/libsyntax_pos/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#![feature(rustc_attrs)]
1818
#![feature(specialization)]
1919
#![feature(step_trait)]
20-
#![cfg_attr(not(stage0), feature(stdsimd))]
2120

2221
use serialize::{Encodable, Decodable, Encoder, Decoder};
2322

src/stage0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# source tarball for a stable release you'll likely see `1.x.0` for rustc and
1313
# `0.x.0` for Cargo where they were released on `date`.
1414

15-
date: 2019-02-27
15+
date: 2019-03-20
1616
rustc: beta
1717
cargo: beta
1818

0 commit comments

Comments
 (0)