summary refs log tree commit diff
path: root/src/libstd/sys/common
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-11-18 21:16:20 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-11-18 21:16:20 +0300
commit64b90f81c3ec2cf5564ed8456d836516491b9d01 (patch)
treecdde50619da3590e4bbaed39dcb557a63a76b8d2 /src/libstd/sys/common
parent5cdfd8401b7f714be22fe7d86619e438d23b3962 (diff)
downloadrust-64b90f81c3ec2cf5564ed8456d836516491b9d01.tar.gz
rust-64b90f81c3ec2cf5564ed8456d836516491b9d01.zip
Fix buildbot failures
Diffstat (limited to 'src/libstd/sys/common')
-rw-r--r--src/libstd/sys/common/unwind/gcc.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/sys/common/unwind/gcc.rs b/src/libstd/sys/common/unwind/gcc.rs
index 0a598b55951..e9f2afbf55e 100644
--- a/src/libstd/sys/common/unwind/gcc.rs
+++ b/src/libstd/sys/common/unwind/gcc.rs
@@ -253,12 +253,14 @@ pub mod eh_frame_registry {
     }
     #[cfg(not(test))]
     #[no_mangle]
+    #[unstable(feature = "libstd_sys_internals", issue = "0")]
     pub unsafe extern fn rust_eh_register_frames(eh_frame_begin: *const u8,
                                                  object: *mut u8) {
         __register_frame_info(eh_frame_begin, object);
     }
     #[cfg(not(test))]
     #[no_mangle]
+    #[unstable(feature = "libstd_sys_internals", issue = "0")]
     pub  unsafe extern fn rust_eh_unregister_frames(eh_frame_begin: *const u8,
                                                    object: *mut u8) {
         __deregister_frame_info(eh_frame_begin, object);