| Age | Commit message (Expand) | Author | Lines |
| 2018-05-05 | add a comment about Locations::All | Niko Matsakis | -0/+36 |
| 2018-05-05 | remove `#[allow(dead_code)]` | Niko Matsakis | -1/+0 |
| 2018-05-05 | add `-Znll-facts` switch that dumps facts for new analysis | Niko Matsakis | -54/+438 |
| 2018-05-05 | add location table | Niko Matsakis | -0/+132 |
| 2018-05-05 | add `Locations::All` as a concept | Niko Matsakis | -50/+74 |
| 2018-05-05 | use `crate` visibility modifier | Niko Matsakis | -2/+2 |
| 2018-05-05 | add `Location::START` const | Niko Matsakis | -2/+2 |
| 2018-05-04 | Auto merge of #49870 - pnkfelix:issue-27282-immut-borrow-all-pat-ids-in-guard... | bors | -1/+2 |
| 2018-05-04 | Auto merge of #50409 - KiChjang:issue-50343, r=nikomatsakis | bors | -3/+3 |
| 2018-05-03 | Improve instrumentation for the bug reported during `fn report_borrowed_value... | Felix S. Klock II | -1/+2 |
| 2018-05-02 | Skip checking for unused mutable locals that have no name | Keith Yeung | -3/+3 |
| 2018-05-02 | store RegionVariableInfo and not just RegionVariableOrigin | Sean Griffin | -5/+5 |
| 2018-05-02 | Auto merge of #50278 - eddyb:mir-succ-iter, r=nikomatsakis | bors | -2/+0 |
| 2018-05-01 | rustc: return impl Iterator from Terminator(Kind)::successors(_mut). | Eduard-Mihai Burtescu | -2/+0 |
| 2018-04-30 | Unify MIR assert messages and const eval errors | Oliver Schneider | -14/+11 |
| 2018-04-28 | Add the actual used mutable var to the set | Keith Yeung | -65/+102 |
| 2018-04-28 | Return RootPlace in is_mutable | Niko Matsakis | -7/+35 |
| 2018-04-28 | Skip implicit self argument for closures | Keith Yeung | -3/+10 |
| 2018-04-28 | Return LocalMutationIsAllowed in is_mutable | Keith Yeung | -31/+32 |
| 2018-04-28 | Determine unused mutable variables based on the 'root' place | Keith Yeung | -86/+111 |
| 2018-04-28 | Only check possibly initialized values and also loop over fn args | Keith Yeung | -4/+19 |
| 2018-04-28 | Track unused mutable variables across closures | Keith Yeung | -30/+77 |
| 2018-04-28 | Allow MIR borrowck to catch unused mutable locals | Keith Yeung | -7/+30 |
| 2018-04-27 | Access individual fields of tuples, closures and generators on drop. | Matthew Jasper | -10/+30 |
| 2018-04-27 | Auto merge of #50097 - glandium:box_free, r=nikomatsakis | bors | -69/+1 |
| 2018-04-21 | Auto merge of #50076 - spastorino:fix_exhaust_iter_in_debug, r=pnkfelix | bors | -14/+14 |
| 2018-04-20 | Remove the explicit box_free type check | Mike Hommey | -69/+1 |
| 2018-04-19 | Fix Iter exhaustion in prove_predicates when debug is on | Santiago Pastorino | -14/+14 |
| 2018-04-18 | Work around rust-lang/rust#49998 with experimental code that does less updati... | Felix S. Klock II | -2/+12 |
| 2018-04-17 | Auto merge of #49836 - nikomatsakis:nll-facts-prep, r=pnkfelix | bors | -228/+634 |
| 2018-04-17 | Rollup merge of #49647 - kennytm:duplicated-features, r=aturon | kennytm | -4/+4 |
| 2018-04-17 | Rollup merge of #49931 - csmoe:end_span, r=estebank | kennytm | -4/+18 |
| 2018-04-16 | Auto merge of #49130 - smmalis37:range, r=alexcrichton | bors | -4/+4 |
| 2018-04-15 | s/`use_mir`/`use_mir_borrowck`/ | Niko Matsakis | -2/+2 |
| 2018-04-15 | remove -Znll -- borrowck=mir implies nll now | Niko Matsakis | -167/+86 |
| 2018-04-15 | don't expose the `borrows` field | Niko Matsakis | -10/+19 |
| 2018-04-15 | just use an iterator | Niko Matsakis | -2/+1 |
| 2018-04-15 | stop using `borrows` for anything but iterating over live data | Niko Matsakis | -31/+55 |
| 2018-04-15 | thread borrow-set around more | Niko Matsakis | -5/+8 |
| 2018-04-15 | remove `ReserveOrActivateIndex` | Niko Matsakis | -18/+8 |
| 2018-04-15 | use the `activations_at_location` map to check activations | Niko Matsakis | -34/+28 |
| 2018-04-15 | determine whether a borrow is active based solely on the location | Niko Matsakis | -7/+76 |
| 2018-04-15 | add useful debug | Niko Matsakis | -0/+8 |
| 2018-04-15 | encapsulate ReserveOrActivateIndex into the borrows dataflow | Niko Matsakis | -13/+13 |
| 2018-04-15 | construct the `BorrowSet` outside of `borrows` | Niko Matsakis | -2/+4 |
| 2018-04-15 | extract code to build borrow-set into `borrow_check::borrow_set` | Niko Matsakis | -3/+310 |
| 2018-04-15 | relocate `BorrowData` etc into `borrow_check::borrow_set` | Niko Matsakis | -4/+86 |
| 2018-04-15 | Auto merge of #49885 - spastorino:fn_ref_unsound, r=nikomatsakis | bors | -20/+35 |
| 2018-04-14 | fix error span | csmoe | -4/+18 |
| 2018-04-13 | Auto merge of #49808 - spastorino:dump_cause_ice, r=nikomatsakis | bors | -13/+25 |