about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorPeter Marheine <peter@taricorp.net>2015-04-29 13:11:31 -0600
committerPeter Marheine <peter@taricorp.net>2015-04-29 13:11:31 -0600
commit94c9bdeef6d85bdb30ef04bf339c1796338151d6 (patch)
treeec88197598a2ce6c580b982306043c2e1c6363d0 /src/libcore
parent998c10d6b64f9a37d4cab33e09b9dfd551c76b92 (diff)
downloadrust-94c9bdeef6d85bdb30ef04bf339c1796338151d6.tar.gz
rust-94c9bdeef6d85bdb30ef04bf339c1796338151d6.zip
Update SNAPs to latest snapshot.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/intrinsics.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs
index d525ff64cac..59008d5db11 100644
--- a/src/libcore/intrinsics.rs
+++ b/src/libcore/intrinsics.rs
@@ -145,13 +145,13 @@ extern "rust-intrinsic" {
     /// but no instructions will be emitted for it. This is appropriate for operations
     /// on the same thread that may be preempted, such as when interacting with signal
     /// handlers.
-    #[cfg(not(stage0))]     // SNAP 5520801
+    #[cfg(not(stage0))]     // SNAP 857ef6e
     pub fn atomic_singlethreadfence();
-    #[cfg(not(stage0))]     // SNAP 5520801
+    #[cfg(not(stage0))]     // SNAP 857ef6e
     pub fn atomic_singlethreadfence_acq();
-    #[cfg(not(stage0))]     // SNAP 5520801
+    #[cfg(not(stage0))]     // SNAP 857ef6e
     pub fn atomic_singlethreadfence_rel();
-    #[cfg(not(stage0))]     // SNAP 5520801
+    #[cfg(not(stage0))]     // SNAP 857ef6e
     pub fn atomic_singlethreadfence_acqrel();
 
     /// Aborts the execution of the process.