Skip to content

Commit 22719e4

Browse files
committed
---
yaml --- r: 42793 b: refs/heads/try c: 28ed9dc h: refs/heads/master i: 42791: d5c2021 v: v3
1 parent fca0a69 commit 22719e4

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5-
refs/heads/try: 0c1d9befb3400931ccf4edcf21ba464c1c70b161
5+
refs/heads/try: 28ed9dc09e91c9e57095e75d22d59eab0fdd6d1a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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/try/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)