Skip to content

Commit 3292f51

Browse files
committed
---
yaml --- r: 52675 b: refs/heads/dist-snap c: 28ed9dc h: refs/heads/master i: 52673: 8f83dd8 52671: 0a1de25 v: v3
1 parent 1705f0e commit 3292f51

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 0c1d9befb3400931ccf4edcf21ba464c1c70b161
10+
refs/heads/dist-snap: 28ed9dc09e91c9e57095e75d22d59eab0fdd6d1a
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libcore/vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ pub pure fn const_view<T>(v: &r/[const T], start: uint,
308308
}
309309
}
310310

311-
/// Copies
311+
/// Copies
312312
313313
/// Split the vector `v` by applying each element against the predicate `f`.
314314
pub fn split<T: Copy>(v: &[T], f: fn(t: &T) -> bool) -> ~[~[T]] {

branches/dist-snap/src/librustc/middle/trans/foreign.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,8 @@ fn trans_intrinsic(ccx: @crate_ctxt, decl: ValueRef, item: @ast::foreign_item,
574574
let size = get_param(decl, first_real_arg + 2);
575575
let align = C_i32(1);
576576
let volatile = C_bool(false);
577-
let llfn = bcx.ccx().intrinsics.get(~"llvm.memmove.p0i8.p0i8.i32");
577+
let llfn = bcx.ccx().intrinsics.get(
578+
~"llvm.memmove.p0i8.p0i8.i32");
578579
Call(bcx, llfn, ~[dst_ptr, src_ptr, size, align, volatile]);
579580
}
580581
~"memmove64" => {
@@ -583,7 +584,8 @@ fn trans_intrinsic(ccx: @crate_ctxt, decl: ValueRef, item: @ast::foreign_item,
583584
let size = get_param(decl, first_real_arg + 2);
584585
let align = C_i32(1);
585586
let volatile = C_bool(false);
586-
let llfn = bcx.ccx().intrinsics.get(~"llvm.memmove.p0i8.p0i8.i64");
587+
let llfn = bcx.ccx().intrinsics.get(
588+
~"llvm.memmove.p0i8.p0i8.i64");
587589
Call(bcx, llfn, ~[dst_ptr, src_ptr, size, align, volatile]);
588590
}
589591
~"sqrtf32" => {

0 commit comments

Comments
 (0)