]> git.lizzy.rs Git - rust.git/commit
auto merge of #5966 : alexcrichton/rust/issue-3083, r=graydon
authorbors <bors@rust-lang.org>
Mon, 22 Apr 2013 22:36:51 +0000 (15:36 -0700)
committerbors <bors@rust-lang.org>
Mon, 22 Apr 2013 22:36:51 +0000 (15:36 -0700)
commitaba93c6b60a91fc4b6b60408e51b23dbee5f44c9
tree91d5ca30a8d1809161972cffa0b69b89a22750f2
parenta6dd7dc1f2e1057719179e861a5a5ae55d6a8335
parentc389d0b0dd2273c9f7d16917a1738509f5522491
auto merge of #5966 : alexcrichton/rust/issue-3083, r=graydon

Closes #3083.

This takes a similar approach to #5797 where a set is present on the `tcx` of used mutable definitions. Everything is by default warned about, and analyses must explicitly add mutable definitions to this set so they're not warned about.

Most of this was pretty straightforward, although there was one caveat that I ran into when implementing it. Apparently when the old modes are used (or maybe `legacy_modes`, I'm not sure) some different code paths are taken to cause spurious warnings to be issued which shouldn't be issued. I'm not really sure how modes even worked, so I was having a lot of trouble tracking this down. I figured that because they're a legacy thing that I'd just de-mode the compiler so that the warnings wouldn't be a problem anymore (or at least for the compiler).

Other than that, the entire compiler compiles without warnings of unused mutable variables. To prevent bad warnings, #5965 should be landed (which in turn is waiting on #5963) before landing this. I figured I'd stick it out for review anyway though.
src/libcore/cell.rs
src/libcore/path.rs
src/libcore/rand.rs
src/librustc/middle/resolve.rs
src/librustc/middle/trans/expr.rs
src/librustc/middle/trans/monomorphize.rs
src/librustc/middle/ty.rs
src/libstd/num/rational.rs
src/libsyntax/parse/parser.rs