Skip to content

Commit a18d984

Browse files
arielb1Ariel Ben-Yehuda
authored and
Ariel Ben-Yehuda
committed
Make the unused_mut lint smarter with respect to locals.
Fixes #26332
1 parent 2f45294 commit a18d984

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

src/libcore/iter.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2655,8 +2655,8 @@ macro_rules! step_impl_signed {
26552655
#[allow(trivial_numeric_casts)]
26562656
fn steps_between(start: &$t, end: &$t, by: &$t) -> Option<usize> {
26572657
if *by == 0 { return None; }
2658-
let mut diff: usize;
2659-
let mut by_u: usize;
2658+
let diff: usize;
2659+
let by_u: usize;
26602660
if *by > 0 {
26612661
if *start >= *end {
26622662
return Some(0);

src/libfmt_macros/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl<'a> Parser<'a> {
399399
}
400400
Some(..) | None => { return &self.input[..0]; }
401401
};
402-
let mut end;
402+
let end;
403403
loop {
404404
match self.cur.clone().next() {
405405
Some((_, c)) if c.is_xid_continue() => {

src/librustc/middle/infer/error_reporting.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1854,7 +1854,7 @@ impl LifeGiver {
18541854
}
18551855

18561856
fn give_lifetime(&self) -> ast::Lifetime {
1857-
let mut lifetime;
1857+
let lifetime;
18581858
loop {
18591859
let mut s = String::from("'");
18601860
s.push_str(&num_to_string(self.counter.get()));

src/librustc_borrowck/borrowck/check_loans.rs

+8-17
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl<'a, 'tcx> euv::Delegate<'tcx> for CheckLoanCtxt<'a, 'tcx> {
182182
None => { }
183183
}
184184

185-
self.check_assignment(assignment_id, assignment_span, assignee_cmt, mode);
185+
self.check_assignment(assignment_id, assignment_span, assignee_cmt);
186186
}
187187

188188
fn decl_without_init(&mut self, _id: ast::NodeId, _span: Span) { }
@@ -782,16 +782,9 @@ impl<'a, 'tcx> CheckLoanCtxt<'a, 'tcx> {
782782
fn check_assignment(&self,
783783
assignment_id: ast::NodeId,
784784
assignment_span: Span,
785-
assignee_cmt: mc::cmt<'tcx>,
786-
mode: euv::MutateMode) {
785+
assignee_cmt: mc::cmt<'tcx>) {
787786
debug!("check_assignment(assignee_cmt={:?})", assignee_cmt);
788787

789-
// Initializations never cause borrow errors as they only
790-
// affect a fresh local.
791-
if mode == euv::Init {
792-
return
793-
}
794-
795788
// Check that we don't invalidate any outstanding loans
796789
if let Some(loan_path) = opt_loan_path(&assignee_cmt) {
797790
let scope = region::CodeExtent::from_node_id(assignment_id);
@@ -801,17 +794,15 @@ impl<'a, 'tcx> CheckLoanCtxt<'a, 'tcx> {
801794
});
802795
}
803796

804-
// Local variables can always be assigned to, expect for reassignments
805-
// of immutable variables (or assignments that invalidate loans,
806-
// of course).
797+
// Check for reassignments to (immutable) local variables. This
798+
// needs to be done here instead of in check_loans because we
799+
// depend on move data.
807800
if let mc::cat_local(local_id) = assignee_cmt.cat {
808-
if assignee_cmt.mutbl.is_mutable() {
809-
self.tcx().used_mut_nodes.borrow_mut().insert(local_id);
810-
}
811-
812801
let lp = opt_loan_path(&assignee_cmt).unwrap();
813802
self.move_data.each_assignment_of(assignment_id, &lp, |assign| {
814-
if !assignee_cmt.mutbl.is_mutable() {
803+
if assignee_cmt.mutbl.is_mutable() {
804+
self.tcx().used_mut_nodes.borrow_mut().insert(local_id);
805+
} else {
815806
self.bccx.report_reassigned_immutable_variable(
816807
assignment_span,
817808
&*lp,

src/librustc_trans/save/dump_csv.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ impl <'l, 'tcx> DumpCsvVisitor<'l, 'tcx> {
308308

309309
debug!("process_method: {}:{}", id, token::get_name(name));
310310

311-
let mut scope_id;
311+
let scope_id;
312312
// The qualname for a method is the trait name or name of the struct in an impl in
313313
// which the method is declared in, followed by the method's name.
314314
let qualname = match self.tcx.impl_of_method(ast_util::local_def(id)) {

src/libsyntax/parse/lexer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ impl<'a> StringReader<'a> {
598598

599599
/// Lex a LIT_INTEGER or a LIT_FLOAT
600600
fn scan_number(&mut self, c: char) -> token::Lit {
601-
let mut num_digits;
601+
let num_digits;
602602
let mut base = 10;
603603
let start_bpos = self.last_pos;
604604

src/test/compile-fail/lint-unused-mut-variables.rs

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ fn main() {
2323
let mut b = 3; //~ ERROR: variable does not need to be mutable
2424
let mut a = vec!(3); //~ ERROR: variable does not need to be mutable
2525
let (mut a, b) = (1, 2); //~ ERROR: variable does not need to be mutable
26+
let mut a; //~ ERROR: variable does not need to be mutable
27+
a = 3;
28+
29+
let mut b; //~ ERROR: variable does not need to be mutable
30+
if true {
31+
b = 3;
32+
} else {
33+
b = 4;
34+
}
2635

2736
match 30 {
2837
mut x => {} //~ ERROR: variable does not need to be mutable

0 commit comments

Comments
 (0)