fix line too long

This commit is contained in:
Niko Matsakis 2011-10-31 14:43:31 -07:00 committed by Brian Anderson
parent 3f4fd29db8
commit 8385d77b32
1 changed files with 2 additions and 1 deletions

View File

@ -1982,7 +1982,8 @@ fn call_memmove(cx: @block_ctxt, dst: ValueRef, src: ValueRef,
let size = IntCast(cx, n_bytes, ccx.int_type);
let align = C_i32(1i32);
let volatile = C_bool(false);
let ret_val = Call(cx, memmove, [dst_ptr, src_ptr, size, align, volatile]);
let ret_val = Call(cx, memmove, [dst_ptr, src_ptr, size,
align, volatile]);
ret rslt(cx, ret_val);
}