]> git.lizzy.rs Git - rust.git/commitdiff
Register snapshots
authorCorey Richardson <corey@octayn.net>
Mon, 21 Oct 2013 18:18:34 +0000 (14:18 -0400)
committerCorey Richardson <corey@octayn.net>
Mon, 21 Oct 2013 18:43:11 +0000 (14:43 -0400)
src/libstd/unstable/intrinsics.rs
src/snapshots.txt
src/test/run-pass/intrinsic-frame-address.rs [deleted file]

index 8959d591c37ebdfa6dbd0c6042f3ca5ef5d75dc3..9efdb843f51f8d0f8842e0f39591cc0c9d7a0341 100644 (file)
@@ -330,9 +330,6 @@ fn visit_leave_fn(&mut self, purity: uint, proto: uint,
 
     pub fn visit_tydesc(td: *TyDesc, tv: &mut TyVisitor);
 
-    #[cfg(not(stage0))]
-    pub fn frame_address(f: &fn(*u8));
-
     /// Get the address of the `__morestack` stack growth function.
     pub fn morestack_addr() -> *();
 
index 627546f090703038b6f45e75592bf2d88f701f2e..ec97f5fdf9ecad21531a5f6ae4b4cb8ba3202f0e 100644 (file)
@@ -1,3 +1,11 @@
+S 2013-10-21 6e6981c
+  freebsd-x86_64 7f630581d0e881483272140e84bc2f494daf6204
+  linux-i386 5c754455610013bbe448e8f6ef8ba1a05b167919
+  linux-x86_64 d993920210413add241f7b235dec0e4d72164be5
+  macos-i386 8b48d8598f4d503e6bbc40bff52457c659d6de2b
+  macos-x86_64 e84bcd0b08af6a0ff602dca7a5bec21a001c5eb8
+  winnt-i386 3f4441509f89a794ec9b53e38756e6124df78df0
+
 S 2013-10-16 6c08cc2
   freebsd-x86_64 03caf882078eff9b4e04d116732b41a3cdfc260f
   linux-i386 ce30bb90434e9eb9920028a5408e1f986ba2ad5d
diff --git a/src/test/run-pass/intrinsic-frame-address.rs b/src/test/run-pass/intrinsic-frame-address.rs
deleted file mode 100644 (file)
index c7b2379..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-// xfail-fast
-
-mod rusti {
-    extern "rust-intrinsic" {
-        pub fn frame_address(f: &fn(*u8));
-    }
-}
-
-pub fn main() {
-    unsafe {
-        do rusti::frame_address |addr| {
-            assert!(addr.is_not_null());
-        }
-    }
-}