about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-10-22 21:45:56 -0700
committerBrian Anderson <banderson@mozilla.com>2012-10-22 21:46:30 -0700
commitce1466fbe5304cf50a159efdaa076495b1ccec70 (patch)
treeeac459c3fb604969c20c48995b63bc049c590819
parentb2af873b762e5241ff7ad6a4c07f2e9198ef747d (diff)
downloadrust-ce1466fbe5304cf50a159efdaa076495b1ccec70.tar.gz
rust-ce1466fbe5304cf50a159efdaa076495b1ccec70.zip
Tidy
-rw-r--r--src/libcore/private.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/private.rs b/src/libcore/private.rs
index 6addb106de3..8e89a3de6a8 100644
--- a/src/libcore/private.rs
+++ b/src/libcore/private.rs
@@ -27,7 +27,7 @@ extern mod rustrt {
 #[abi = "rust-intrinsic"]
 extern mod rusti {
 
-    #[cfg(stage1)] #[cfg(stage2)] #[cfg(stage3)]    
+    #[cfg(stage1)] #[cfg(stage2)] #[cfg(stage3)]
     fn atomic_cxchg(dst: &mut int, old: int, src: int) -> int;
     fn atomic_xadd(dst: &mut int, src: int) -> int;
     fn atomic_xsub(dst: &mut int, src: int) -> int;
@@ -38,7 +38,7 @@ type rust_port_id = uint;
 
 type GlobalPtr = *libc::uintptr_t;
 
-// TODO: Remove once snapshots have atomic_cxchg
+// FIXME #3527: Remove once snapshots have atomic_cxchg
 #[cfg(stage0)]
 fn compare_and_swap(address: &mut libc::uintptr_t,
                     oldval: libc::uintptr_t,