Skip to content

Commit 852af34

Browse files
committed
Tidy
1 parent fa1a172 commit 852af34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libcore/unstable/intrinsics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ pub extern "rust-intrinsic" {
1919
pub fn atomic_cxchg(dst: &mut int, old: int, src: int) -> int;
2020
pub fn atomic_cxchg_acq(dst: &mut int, old: int, src: int) -> int;
2121
pub fn atomic_cxchg_rel(dst: &mut int, old: int, src: int) -> int;
22-
22+
2323
#[cfg(not(stage0))]
2424
pub fn atomic_load(src: &int) -> int;
2525
#[cfg(not(stage0))]
2626
pub fn atomic_load_acq(src: &int) -> int;
27-
27+
2828
#[cfg(not(stage0))]
2929
pub fn atomic_store(dst: &mut int, val: int);
3030
#[cfg(not(stage0))]

src/librustc/lib/llvm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1574,7 +1574,7 @@ pub mod llvm {
15741574
Ptr: ValueRef,
15751575
Order: AtomicOrdering)
15761576
-> ValueRef;
1577-
1577+
15781578
pub unsafe fn LLVMBuildAtomicCmpXchg(B: BuilderRef,
15791579
LHS: ValueRef,
15801580
CMP: ValueRef,

0 commit comments

Comments
 (0)