about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-02-06 23:24:41 -0800
committerBrian Anderson <banderson@mozilla.com>2014-02-07 13:21:35 -0800
commitb91caac729fd103a7ce4a6094be7845643f4704d (patch)
treede10f0a647a7d622dc4cefbcbe7774292de3c3f5 /src/libstd
parent6aad3bf944da209d1852c51144ba584de400a10c (diff)
downloadrust-b91caac729fd103a7ce4a6094be7845643f4704d.tar.gz
rust-b91caac729fd103a7ce4a6094be7845643f4704d.zip
rustc: Remove 'morestack_addr' intrinsic. Unused
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/unstable/intrinsics.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/unstable/intrinsics.rs b/src/libstd/unstable/intrinsics.rs
index ca49576ab2d..7ca28711504 100644
--- a/src/libstd/unstable/intrinsics.rs
+++ b/src/libstd/unstable/intrinsics.rs
@@ -310,9 +310,6 @@ extern "rust-intrinsic" {
 
     pub fn visit_tydesc(td: *TyDesc, tv: &mut TyVisitor);
 
-    /// Get the address of the `__morestack` stack growth function.
-    pub fn morestack_addr() -> *();
-
     /// Calculates the offset from a pointer. The offset *must* be in-bounds of
     /// the object, or one-byte-past-the-end. An arithmetic overflow is also
     /// undefined behaviour.