| Age | Commit message (Expand) | Author | Lines |
| 2018-03-22 | Added UserAssertTy statement. | David Wood | -3/+5 |
| 2018-03-15 | Rollup merge of #48840 - varkor:idxset-cleanup, r=pnkfelix | kennytm | -5/+5 |
| 2018-03-13 | transition various normalization functions to the new methods | Niko Matsakis | -1/+1 |
| 2018-03-09 | Finally start down the right path | bobtwinkles | -38/+15 |
| 2018-03-08 | Rollup merge of #48682 - spastorino:make_causal_lazy, r=nikomatsakis | Manish Goregaokar | -67/+65 |
| 2018-03-08 | Fully use miri in trans | Oliver Schneider | -6/+7 |
| 2018-03-06 | Run rustfmt over modified files | Santiago Pastorino | -67/+63 |
| 2018-03-06 | Make causal tracking lazy | Santiago Pastorino | -1/+3 |
| 2018-03-06 | Remove IdxSet::elems | varkor | -5/+5 |
| 2018-03-05 | Turn features() into a query. | Michael Woerister | -5/+5 |
| 2018-02-17 | fix more typos found by codespell. | Matthias Krüger | -4/+4 |
| 2018-02-14 | Normalizing associated types when checking borrows in drops. | David Wood | -8/+23 |
| 2018-02-14 | check that types "need drop" before we access them | Niko Matsakis | -12/+28 |
| 2018-02-14 | Simplified logic and corrected shallow to deep. | David Wood | -29/+11 |
| 2018-02-14 | Handle recursive case of dropping structs with field accesses when struct has... | David Wood | -48/+71 |
| 2018-02-14 | Fixed incorrect reporting of errors when checking borrows in drops. | David Wood | -11/+41 |
| 2018-02-09 | Auto merge of #47802 - bobtwinkles:loop_false_edge, r=nikomatsakis | bors | -1/+2 |
| 2018-02-08 | Restrict two-phase borrows to solely borrows introduced via autoref. | Felix S. Klock II | -2/+11 |
| 2018-02-08 | Encode (in MIR) whether borrows are explicit in source or arise due to autoref. | Felix S. Klock II | -7/+7 |
| 2018-02-07 | Auto merge of #47607 - davidtwco:issue-45697, r=nikomatsakis | bors | -25/+35 |
| 2018-02-05 | Swapped order of left/right visits to ensure consistency in read/write pass o... | David Wood | -7/+7 |
| 2018-02-05 | mir: Add TerminatorKind::FalseUnwind | bobtwinkles | -1/+2 |
| 2018-01-29 | rustc_borrowck: replace "lvalue" terminology with "place" in docs. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-01-29 | rustc: replace "lvalue" terminology with "place" in the code. | Eduard-Mihai Burtescu | -5/+5 |
| 2018-01-27 | Added logging for error suppression. | David Wood | -1/+4 |
| 2018-01-27 | Encompassed error deduplication of some existing sets in the ctxt. | David Wood | -26/+17 |
| 2018-01-27 | Introduced a new set to stop duplicate errors from MIR passes on one place/span. | David Wood | -0/+16 |
| 2018-01-27 | end_point handling multibyte characters correctly. | David Wood | -1/+2 |
| 2018-01-23 | Port borrows across yield check to MIR borrowck | John Kåre Alsaker | -0/+61 |
| 2018-01-03 | Auto merge of #46984 - arielb1:pre-statement-effect, r=nikomatsakis | bors | -0/+2 |
| 2017-12-26 | Auto merge of #46975 - matthewjasper:mir-moveck-asm, r=arielb1 | bors | -1/+1 |
| 2017-12-24 | Make killing of out-of-scope borrows a pre-statement effect | Ariel Ben-Yehuda | -0/+2 |
| 2017-12-24 | Auto merge of #46833 - diwic:7c-abort-ffi, r=arielb1 | bors | -0/+1 |
| 2017-12-23 | Give MIR borrowck a better understanding of inline asm | Matthew Jasper | -1/+1 |
| 2017-12-21 | Issue #46589 - Kill borrows on a local variable whenever we assign over this ... | David Teller | -6/+1 |
| 2017-12-21 | Mir: Add Terminatorkind::Abort | David Henningsson | -0/+1 |
| 2017-12-20 | document and tweak the nll, use_mir, etc helpers | Niko Matsakis | -4/+1 |
| 2017-12-20 | feature nll implies borrowck=mir | Santiago Pastorino | -1/+1 |
| 2017-12-20 | feature nll implies two-phase-borrows | Santiago Pastorino | -3/+3 |
| 2017-12-20 | Add nll feature and make nll imply nll_dump_cause | Santiago Pastorino | -3/+3 |
| 2017-12-20 | integrate -Znll-dump-cause into borrowck | Niko Matsakis | -0/+6 |
| 2017-12-20 | use Rc to store nonlexical_regioncx in Borrows | Niko Matsakis | -1/+3 |
| 2017-12-20 | rustfmt: borrow_check/mod.rs | Niko Matsakis | -178/+229 |
| 2017-12-15 | permit `ClosureOutlivesRequirement` to constrain regions or types | Niko Matsakis | -2/+2 |
| 2017-12-15 | move `flow_in_progress` into `dataflow` and document it | Niko Matsakis | -2/+2 |
| 2017-12-14 | Address review feedback: don't treat "first" activation special. | Felix S. Klock II | -6/+14 |
| 2017-12-14 | Address review feedback: don't bother skipping reservations paired with activ... | Felix S. Klock II | -10/+0 |
| 2017-12-14 | Address review note: `AccessErrorsReported` meant to track whether error repo... | Felix S. Klock II | -1/+1 |
| 2017-12-13 | Check activation points as the place where mutable borrows become relevant. | Felix S. Klock II | -4/+120 |
| 2017-12-13 | Incorporate active-borrows dataflow into MIR borrow check, yielding | Felix S. Klock II | -4/+20 |