| Age | Commit message (Expand) | Author | Lines |
| 2018-03-20 | Stabilize slice patterns without `..` | Vadim Petrochenkov | -5/+2 |
| 2018-03-16 | Rollup merge of #48875 - jcowgill:mips-test-fixes, r=sanxiyn | kennytm | -1/+3 |
| 2018-03-09 | Complete re-implementation of 2-phase borrows | bobtwinkles | -1/+0 |
| 2018-03-09 | Finally start down the right path | bobtwinkles | -16/+19 |
| 2018-03-08 | borrowck-asm: enable on mips | James Cowgill | -1/+3 |
| 2018-02-24 | Rollup merge of #48197 - bobtwinkles:two_phase_borrow_on_ops, r=nikomatsakis | Manish Goregaokar | -53/+0 |
| 2018-02-23 | update tests and reference files | Niko Matsakis | -8/+4 |
| 2018-02-17 | Auto merge of #47926 - mikhail-m1:subslice_pattern_array_drop2, r=nikomatsakis | bors | -0/+30 |
| 2018-02-13 | Allow two-phase borrows of &mut self in ops | bobtwinkles | -53/+0 |
| 2018-02-11 | Auto merge of #48092 - eddyb:discriminate-the-void, r=nikomatsakis | bors | -16/+16 |
| 2018-02-09 | rustc_mir: insert a dummy access to places being matched on, when building MIR. | Eduard-Mihai Burtescu | -16/+16 |
| 2018-02-08 | add transform for uniform array move out | Mikhail Modin | -0/+30 |
| 2018-02-08 | Fleshed out the test a lot more. | Felix S. Klock II | -9/+230 |
| 2018-02-08 | Test that autoref'ing beyond method receivers does not leak into two-phase bo... | Felix S. Klock II | -0/+39 |
| 2018-02-08 | Restrict two-phase borrows to solely borrows introduced via autoref. | Felix S. Klock II | -18/+67 |
| 2018-01-03 | Auto merge of #46984 - arielb1:pre-statement-effect, r=nikomatsakis | bors | -1/+0 |
| 2017-12-24 | Make killing of out-of-scope borrows a pre-statement effect | Ariel Ben-Yehuda | -1/+0 |
| 2017-12-23 | Give MIR borrowck a better understanding of inline asm | Matthew Jasper | -0/+97 |
| 2017-12-15 | Auto merge of #46537 - pnkfelix:two-phase-borrows, r=arielb1 | bors | -0/+246 |
| 2017-12-14 | Move compile-fail tests with NOTE/HELP annotations to UI | Vadim Petrochenkov | -500/+0 |
| 2017-12-13 | Check activation points as the place where mutable borrows become relevant. | Felix S. Klock II | -11/+72 |
| 2017-12-13 | two-phase-reservation-sharing-interference.rs variant that is perhaps more su... | Felix S. Klock II | -0/+38 |
| 2017-12-13 | test describing a currently unsupported corner case. | Felix S. Klock II | -0/+46 |
| 2017-12-13 | tests transcribed from nikos blog post. | Felix S. Klock II | -0/+101 |
| 2017-12-11 | Updated existing tests with new error messages. | David Wood | -4/+6 |
| 2017-12-06 | fix borrows across loops, libcore *almost* compiles | Ariel Ben-Yehuda | -8/+2 |
| 2017-12-06 | handle gen/kill sets together | Ariel Ben-Yehuda | -1/+5 |
| 2017-12-06 | improve conflict error reporting | Ariel Ben-Yehuda | -2/+2 |
| 2017-12-06 | MIR borrowck: implement union-and-array-compatible semantics | Ariel Ben-Yehuda | -7/+10 |
| 2017-12-03 | add and unignore tests | Ariel Ben-Yehuda | -0/+23 |
| 2017-11-28 | mir-borrowck: Update tests | Basile Desloges | -11/+23 |
| 2017-11-27 | Add initialization info to `MoveData` | Matthew Jasper | -0/+7 |
| 2017-11-26 | Update tests for -Zborrowck-mir -> -Zborrowck=mode migration | est31 | -250/+145 |
| 2017-11-24 | Kill the storage for all locals on returning terminators | Keith Yeung | -0/+44 |
| 2017-11-23 | Fix borrowck compiler errors for upvars contain "spurious" dereferences | Ramana Venkata | -2/+13 |
| 2017-11-19 | mir-borrowck: Remove parens in the lvalue description of a deref | Basile Desloges | -7/+7 |
| 2017-11-17 | Do not registor borrows for unsafe lvalues | Keith Yeung | -34/+0 |
| 2017-11-15 | Auto merge of #45938 - vramana:fix-ice-45698, r=arielb1 | bors | -0/+24 |
| 2017-11-15 | add `StorageDead` handling | Mikhail Modin | -0/+30 |
| 2017-11-15 | Auto merge of #45922 - vramana:fix-45702, r=nikomatsakis | bors | -6/+18 |
| 2017-11-15 | Fix printing of upvar in closures | Ramana Venkata | -0/+24 |
| 2017-11-13 | mir-borrowck: Test for `check_access_permissions()` | Basile Desloges | -0/+76 |
| 2017-11-12 | Improve SubSupConflict case with one named, one anonymous lifetime parameter ... | Cengiz Can | -1/+1 |
| 2017-11-11 | Fix MIR borrowck EndRegion not found | Ramana Venkata | -6/+18 |
| 2017-11-08 | restore move out dataflow, add report of move out errors | Mikhail Modin | -3/+3 |
| 2017-11-02 | add TerminatorKind::FalseEdges and use it in matches | Mikhail Modin | -0/+42 |
| 2017-10-26 | Auto merge of #45519 - michaelwoerister:dedup-errors, r=arielb1 | bors | -2/+0 |
| 2017-10-25 | Reword to avoid using either re-assignment or reassignment in errors | Carol (Nichols || Goulding) | -5/+5 |
| 2017-10-25 | Update compile-fail tests for error message deduplication. | Michael Woerister | -2/+0 |
| 2017-10-18 | run EndRegion when unwinding otherwise-empty scopes | Ariel Ben-Yehuda | -1/+6 |