about summary refs log tree commit diff
path: root/src/libstd/rt.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-05-23 22:28:15 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-05-31 16:11:49 -0700
commitfa45670ce4c3813e9af0e50a6b61742310fdaa88 (patch)
tree3e08c66b9c125b072ea0611ca39f8e482d291178 /src/libstd/rt.rs
parent298730e7032cd55809423773da397cd5c7d827d4 (diff)
downloadrust-fa45670ce4c3813e9af0e50a6b61742310fdaa88.tar.gz
rust-fa45670ce4c3813e9af0e50a6b61742310fdaa88.zip
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 {