about summary refs log tree commit diff
path: root/src/libstd/rt.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-05-31 16:12:16 -0700
committerbors <bors@rust-lang.org>2016-05-31 16:12:16 -0700
commit601eb13dc4dd075f82f03c85bbf8a1fbadfe2d6e (patch)
tree3e08c66b9c125b072ea0611ca39f8e482d291178 /src/libstd/rt.rs
parent298730e7032cd55809423773da397cd5c7d827d4 (diff)
parentfa45670ce4c3813e9af0e50a6b61742310fdaa88 (diff)
downloadrust-601eb13dc4dd075f82f03c85bbf8a1fbadfe2d6e.tar.gz
rust-601eb13dc4dd075f82f03c85bbf8a1fbadfe2d6e.zip
Auto merge of #33857 - alexcrichton:new-stage0, r=nikomatsakis
mk: Prepare for a new stage0 compiler

This commit prepares the source for a new stage0 compiler, the 1.10.0 beta
compiler. These artifacts are hot off the bots and should be ready to go.
Diffstat (limited to 'src/libstd/rt.rs')
-rw-r--r--src/libstd/rt.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/rt.rs b/src/libstd/rt.rs
index 6eee4ee9bbe..7217eaa1325 100644
--- a/src/libstd/rt.rs
+++ b/src/libstd/rt.rs
@@ -27,9 +27,6 @@
 // Reexport some of our utilities which are expected by other crates.
 pub use panicking::{begin_panic, begin_panic_fmt};
 
-#[cfg(stage0)]
-pub use panicking::begin_panic as begin_unwind;
-
 #[cfg(not(test))]
 #[lang = "start"]
 fn lang_start(main: *const u8, argc: isize, argv: *const *const u8) -> isize {