Skip to content

Commit 4afb32b

Browse files
committed
---
yaml --- r: 64197 b: refs/heads/snap-stage3 c: 202fcb2 h: refs/heads/master i: 64195: 68d7d0a v: v3
1 parent 3b0ba9f commit 4afb32b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: e6e4f52bcf67e78bc0c796cd780fa01791923fdb
4+
refs/heads/snap-stage3: 202fcb29bd364bb2781928fef4551f0ac37e8e84
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librustc/middle/trans/controlflow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ pub fn trans_break_cont(bcx: block,
248248
let mut unwind = bcx;
249249
let mut cur_scope = unwind.scope;
250250
let mut target = unwind;
251-
let mut quit = false;
251+
let quit = false;
252252
loop {
253253
cur_scope = match cur_scope {
254254
Some(@scope_info {

branches/snap-stage3/src/librustc/middle/trans/meth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ pub fn trans_trait_callee_from_llval(bcx: block,
548548

549549
let _icx = push_ctxt("impl::trans_trait_callee");
550550
let ccx = bcx.ccx();
551-
let mut bcx = bcx;
551+
let bcx = bcx;
552552

553553
// Load the vtable from the @Trait pair
554554
debug!("(translating trait callee) loading vtable from pair %s",

branches/snap-stage3/src/libsyntax/parse/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ impl Parser {
10741074
// This version of parse arg doesn't necessarily require
10751075
// identifier names.
10761076
pub fn parse_arg_general(&self, require_name: bool) -> arg {
1077-
let mut is_mutbl = self.eat_keyword(keywords::Mut);
1077+
let is_mutbl = self.eat_keyword(keywords::Mut);
10781078
let pat = if require_name || self.is_named_argument() {
10791079
self.parse_arg_mode();
10801080
let pat = self.parse_pat();

0 commit comments

Comments
 (0)