Skip to content

Commit 2ec4454

Browse files
committed
---
yaml --- r: 4502 b: refs/heads/master c: 61425c8 h: refs/heads/master v: v3
1 parent c81c1d7 commit 2ec4454

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

[refs]

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 00ccd6ba4272c487c62b06544219ee150307482a
2+
refs/heads/master: 61425c8d1356451845171230def89b6b83bef9a9

trunk/src/comp/back/upcall.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fn declare_upcalls(tn: type_names, tydesc_type: TypeRef,
7979
ret trans::decl_cdecl_fn(llmod, "upcall_" + name, fn_ty);
8080
}
8181
fn decl_with_taskptr(taskptr_type: TypeRef, tn: type_names,
82-
llmod: ModuleRef, name: str, tys: TypeRef[],
82+
llmod: ModuleRef, name: str, tys: [TypeRef],
8383
rv: TypeRef) -> ValueRef {
8484
ret decl(tn, llmod, name, ~[taskptr_type] + tys, rv);
8585
}

trunk/src/comp/middle/tstate/pre_post_conditions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ fn handle_var(fcx: &fn_ctxt, rslt: &pre_and_post, id: node_id, name: ident) {
317317
}
318318
319319
fn forget_args_moved_in(fcx: &fn_ctxt, parent: &@expr,
320-
modes: &ty::mode[],
321-
operands: &(@expr)[]) {
320+
modes: &[ty::mode],
321+
operands: &[@expr]) {
322322
let i = 0;
323323
for mode: ty::mode in modes {
324324
if mode == ty::mo_move {

0 commit comments

Comments
 (0)