Skip to content

Commit a0f5924

Browse files
nikomatsakisbrson
authored andcommitted
---
yaml --- r: 6116 b: refs/heads/master c: 8385d77 h: refs/heads/master v: v3
1 parent 1837e19 commit a0f5924

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 3f4fd29db85c1f13518bc60ec84b8d231283cf13
2+
refs/heads/master: 8385d77b32ca1b0ab3b14b6cdce0c5005e1511d7

trunk/src/comp/middle/trans.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,8 @@ fn call_memmove(cx: @block_ctxt, dst: ValueRef, src: ValueRef,
19821982
let size = IntCast(cx, n_bytes, ccx.int_type);
19831983
let align = C_i32(1i32);
19841984
let volatile = C_bool(false);
1985-
let ret_val = Call(cx, memmove, [dst_ptr, src_ptr, size, align, volatile]);
1985+
let ret_val = Call(cx, memmove, [dst_ptr, src_ptr, size,
1986+
align, volatile]);
19861987
ret rslt(cx, ret_val);
19871988
}
19881989

0 commit comments

Comments
 (0)