Skip to content

Commit 7b3f300

Browse files
committed
---
yaml --- r: 35927 b: refs/heads/try2 c: d0ed13c h: refs/heads/master i: 35925: ef1f73b 35923: 3796355 35919: 9c3b48d v: v3
1 parent bc37bb4 commit 7b3f300

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: c5fa61349894282f9b9a367e08ede0ca4ef67a75
8+
refs/heads/try2: d0ed13c4bdb19b2e9c445908775794f0880a301c
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try2/src/rustc/middle/trans/alt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ fn trans_alt_inner(scope_cx: block,
12021202
arm_cxs.push(bcx);
12031203
}
12041204
1205-
return controlflow::join_blocks(scope_cx, dvec::unwrap(arm_cxs));
1205+
return controlflow::join_blocks(scope_cx, dvec::unwrap(move arm_cxs));
12061206
12071207
fn mk_fail(bcx: block, sp: span, msg: ~str,
12081208
done: @mut Option<BasicBlockRef>) -> BasicBlockRef {

branches/try2/src/rustc/middle/trans/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ fn block_(llbb: BasicBlockRef, parent: Option<block>, -kind: block_kind,
511511
terminated: false,
512512
unreachable: false,
513513
parent: parent,
514-
kind: kind,
514+
kind: move kind,
515515
is_lpad: is_lpad,
516516
node_info: node_info,
517517
fcx: fcx

branches/try2/src/rustc/middle/typeck/infer/combine.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ fn expected_found<C: combine,T>(
8888
self: &C, +a: T, +b: T) -> ty::expected_found<T> {
8989

9090
if self.a_is_expected() {
91-
ty::expected_found {expected: a, found: b}
91+
ty::expected_found {expected: move a, found: move b}
9292
} else {
93-
ty::expected_found {expected: b, found: a}
93+
ty::expected_found {expected: move b, found: move a}
9494
}
9595
}
9696

0 commit comments

Comments
 (0)