| Age | Commit message (Expand) | Author | Lines |
| 2017-10-31 | rewrite `write_mir_fn_graphviz` to cope with non-global tcx | Niko Matsakis | -13/+14 |
| 2017-10-31 | treat -Znll as implying -Zborrowck-mir | Niko Matsakis | -1/+5 |
| 2017-10-31 | remove the NLL pass (it is now invoked by mir borrowck) | Niko Matsakis | -23/+2 |
| 2017-10-31 | change region display to `'_#Nr`, update the `newtype_index!` macro | Niko Matsakis | -2/+1 |
| 2017-10-31 | connect MIR borrowck with NLL | Niko Matsakis | -10/+52 |
| 2017-10-31 | make the dataflow / mir-borrowck types carry a `'tcx` lifetime | Niko Matsakis | -201/+211 |
| 2017-10-31 | test "needs drop" on region-erased, lifted types | Niko Matsakis | -3/+9 |
| 2017-10-31 | reorder 'gcx and 'tcx in `BorrowckErrors` impl | Niko Matsakis | -1/+1 |
| 2017-10-31 | make `closure_self_ty` invokable with `'gcx` and `'tcx` | Niko Matsakis | -4/+4 |
| 2017-10-31 | make nll separately invokable | Niko Matsakis | -29/+13 |
| 2017-10-31 | add basic region subtyping inference | Santiago Pastorino | -0/+112 |
| 2017-10-31 | add reborrow constraints | Santiago Pastorino | -0/+35 |
| 2017-10-31 | make end-point optional in the borrow check | Niko Matsakis | -20/+35 |
| 2017-10-31 | factor out NLL invocation interface | Niko Matsakis | -76/+123 |
| 2017-10-31 | update the format of liveness debug dumps to be more readable | Niko Matsakis | -24/+61 |
| 2017-10-31 | add subregion between borrow region and resulting reference | Niko Matsakis | -8/+55 |
| 2017-10-31 | preliminary support for may-dangle attribute and drop constraints | Niko Matsakis | -13/+113 |
| 2017-10-31 | extend liveness to distinguish "drop" and "non-drop" uses | Niko Matsakis | -114/+213 |
| 2017-10-31 | reorder liveness to bring the more significant code up top | Niko Matsakis | -107/+107 |
| 2017-10-31 | avoid unnecessary copies in liveness computation | Niko Matsakis | -24/+17 |
| 2017-10-31 | introduce liveness constraints into NLL code | Niko Matsakis | -209/+330 |
| 2017-10-31 | extend liveness to compute intrablock liveness and add unit tests | Niko Matsakis | -10/+118 |
| 2017-10-31 | introduce `apply` helper that applies a DefUse set to live bits | Niko Matsakis | -2/+7 |
| 2017-10-31 | extend `dump_mir` to work for any tcx, not just global tcx | Niko Matsakis | -34/+34 |
| 2017-10-31 | rename `BlockInfo` and `BlockInfoVisitor` to `DefsUses` | Niko Matsakis | -14/+6 |
| 2017-10-31 | factor out `pre_defs` field by going backwards | Niko Matsakis | -12/+52 |
| 2017-10-31 | execute liveness, write a simple test | Niko Matsakis | -3/+25 |
| 2017-10-30 | Auto merge of #45497 - mikhail-m1:dump-mir-graphviz, r=nikomatsakis | bors | -17/+35 |
| 2017-10-26 | Add comments to clarify function argument ownership | Björn Steinbrink | -0/+2 |
| 2017-10-26 | Avoid unnecessary copies of arguments that are simple bindings | Björn Steinbrink | -5/+21 |
| 2017-10-26 | add graphvis DOT files to dump mir directory | Mikhail Modin | -17/+35 |
| 2017-10-25 | Reword to avoid using either re-assignment or reassignment in errors | Carol (Nichols || Goulding) | -2/+2 |
| 2017-10-20 | Auto merge of #45359 - arielb1:escaping-borrow, r=eddyb | bors | -53/+86 |
| 2017-10-19 | Rollup merge of #45082 - jacwah:explain-E0382, r=steveklabnik | kennytm | -9/+57 |
| 2017-10-18 | run EndRegion when unwinding otherwise-empty scopes | Ariel Ben-Yehuda | -44/+60 |
| 2017-10-17 | look past the next drop for the drop panic target | Ariel Ben-Yehuda | -9/+7 |
| 2017-10-17 | fix generator drop caching | Ariel Ben-Yehuda | -8/+27 |
| 2017-10-16 | restructure the public inhabitedness APIs and remove the cache | Niko Matsakis | -4/+1 |
| 2017-10-16 | refactor inhabitedness to have clearer public entry points | Niko Matsakis | -7/+4 |
| 2017-10-15 | Auto merge of #45200 - mikhail-m1:match-with-false-edges, r=nikomatsakis | bors | -5/+24 |
| 2017-10-14 | Improve E0382 extended help message | Jacob Wahlgren | -9/+57 |
| 2017-10-14 | Auto merge of #45167 - pnkfelix:migrate-remaining-ast-diagnostics, r=arielb1 | bors | -0/+594 |
| 2017-10-13 | Add License to infer.rs | Santiago Pastorino | -0/+10 |
| 2017-10-13 | TODO -> FIXME | Santiago Pastorino | -4/+4 |
| 2017-10-13 | Add allow_dead code directive to unused methods | Santiago Pastorino | -0/+5 |
| 2017-10-13 | Do not move infcx, just borrow it | Santiago Pastorino | -7/+8 |
| 2017-10-13 | borrow block_data instead of moving it | Santiago Pastorino | -1/+1 |
| 2017-10-13 | sup_def is a mutable reference | Santiago Pastorino | -1/+1 |
| 2017-10-13 | inteference_context should be mut | Santiago Pastorino | -1/+1 |
| 2017-10-13 | Mark Region as public | Santiago Pastorino | -1/+1 |