Skip to content

Commit c809a6c

Browse files
committed
---
yaml --- r: 21955 b: refs/heads/snap-stage3 c: 77b0845 h: refs/heads/master i: 21953: 4fb742e 21951: 1e3c60b v: v3
1 parent e437903 commit c809a6c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 1983e3d8d7faed3e9e47d5589d3826398577b152
4+
refs/heads/snap-stage3: 77b0845a84c481488c11a9fb5892fc823a9ce66d
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/rustc/middle/trans/base.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1721,7 +1721,8 @@ fn trans_class_ctor(ccx: @crate_ctxt, path: path, decl: ast::fn_decl,
17211721
let mut bcx_top = top_scope_block(fcx, body.info());
17221722
let lltop = bcx_top.llbb;
17231723
let arg_tys = ty::ty_fn_args(node_id_type(bcx_top, ctor_id));
1724-
bcx_top = copy_args_to_allocas(fcx, bcx_top, decl.inputs, raw_llargs, arg_tys);
1724+
bcx_top = copy_args_to_allocas(fcx, bcx_top, decl.inputs,
1725+
raw_llargs, arg_tys);
17251726

17261727
// Create a temporary for `self` that we will return at the end
17271728
let selfdatum = datum::scratch_datum(bcx_top, rslt_ty, true);

branches/snap-stage3/src/rustc/middle/trans/type_use.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ use syntax::ast_map;
2727
use common::*;
2828

2929
type type_uses = uint; // Bitmask
30-
const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
31-
take/drop glue */
32-
const use_tydesc: uint = 2u; /* Takes the tydesc, or compares */
30+
const use_repr: uint = 1u; /* Dependency on size/alignment/mode and
31+
take/drop glue */
32+
const use_tydesc: uint = 2u; /* Takes the tydesc, or compares */
3333

3434
type ctx = {ccx: @crate_ctxt,
3535
uses: ~[mut type_uses]};

0 commit comments

Comments
 (0)