]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/intrinsics.rs
Auto merge of #34686 - alexcrichton:new-stage, r=luqmana
[rust.git] / src / libcore / intrinsics.rs
index cedcd986562109b22c46b77de8c12726e86d2b97..1bdcc5bfe119dcce59a62e6fa9d4fe396d57d761 100644 (file)
     #[stable(feature = "rust1", since = "1.0.0")]
     pub fn transmute<T, U>(e: T) -> U;
 
-    /// Gives the address for the return value of the enclosing function.
-    ///
-    /// Using this intrinsic in a function that does not use an out pointer
-    /// will trigger a compiler error.
-    pub fn return_address() -> *const u8;
-
     /// Returns `true` if the actual type given as `T` requires drop
     /// glue; returns `false` if the actual type provided for `T`
     /// implements `Copy`.