| Age | Commit message (Expand) | Author | Lines |
| 2018-09-18 | Eliminate `BitwiseOperator`. | Nicholas Nethercote | -30/+28 |
| 2018-09-18 | Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs. | Nicholas Nethercote | -89/+84 |
| 2018-09-17 | Inspect parents paths when checking for moves | Santiago Pastorino | -0/+14 |
| 2018-09-15 | Make rustc::middle::region::Scope's fields public | Marshall Bowers | -1/+4 |
| 2018-09-15 | Auto merge of #54177 - nnethercote:streamline-bit-stuff, r=Mark-Simulacrum | bors | -7/+8 |
| 2018-09-14 | Remove `Iter` and `SparseIter` in indexed_set.rs. | Nicholas Nethercote | -3/+4 |
| 2018-09-13 | Remove bitslice.rs. | Nicholas Nethercote | -4/+4 |
| 2018-09-10 | add the `AscribeUserType` statement kind | Niko Matsakis | -2/+2 |
| 2018-09-08 | Auto merge of #53909 - mikhail-m1:53643, r=nikomatsakis | bors | -2/+18 |
| 2018-09-08 | Rollup merge of #53315 - nikomatsakis:newtype-index, r=Mark-Simulacrum | kennytm | -2/+0 |
| 2018-09-08 | Rollup merge of #53942 - nnethercote:faster-precompute, r=nikomatsakis | kennytm | -41/+79 |
| 2018-09-07 | make field always private, add `From` impls | Niko Matsakis | -2/+0 |
| 2018-09-07 | Auto merge of #54021 - kennytm:rollup, r=kennytm | bors | -18/+12 |
| 2018-09-07 | Auto merge of #53830 - davidtwco:issue-53228, r=nikomatsakis | bors | -7/+24 |
| 2018-09-06 | Skip a shared borrow of a immutable local variables | Mikhail Modin | -2/+18 |
| 2018-09-05 | A few cleanups and minor improvements to mir/dataflow | ljedrz | -18/+12 |
| 2018-09-04 | Rewrite `precompute_borrows_out_of_scope` for fewer hash table lookups. | Nicholas Nethercote | -41/+79 |
| 2018-08-30 | Make move out computation lazy | Santiago Pastorino | -141/+4 |
| 2018-08-30 | Added InitLocation to encode Location or Local depending on source of Init | David Wood | -7/+24 |
| 2018-08-27 | implement liveness tracing, remove old liveness system | Niko Matsakis | -0/+15 |
| 2018-08-27 | update comment in the interest of precision | Niko Matsakis | -6/+10 |
| 2018-08-24 | Introduce `UnionIntoIdxSet` and `SubtractFromIdxSet` traits. | Nicholas Nethercote | -8/+8 |
| 2018-08-23 | Auto merge of #53520 - nnethercote:merge-IdxSet-IdxSetBuf, r=nikomatsakis | bors | -56/+30 |
| 2018-08-22 | Remove Ty prefix from Ty{Adt|Array|Slice|RawPtr|Ref|FnDef|FnPtr|Dynamic|Closu... | varkor | -8/+8 |
| 2018-08-20 | Remove IdxSet typedef and Rename {,Hybrid}IdxSetBuf as {,Hybrid}IdxSet. | Nicholas Nethercote | -22/+22 |
| 2018-08-20 | Convert `AllSets::on_entry_sets` to a `Vec<IdxSetBuf<E>>`. | Nicholas Nethercote | -40/+14 |
| 2018-08-19 | Fix typos found by codespell. | Matthias Krüger | -1/+1 |
| 2018-08-18 | Use the new Entry::or_default method where possible. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-08-17 | Auto merge of #53383 - nnethercote:HybridIdxSetBuf, r=nikomatsakis | bors | -70/+73 |
| 2018-08-16 | Speed up NLL with `HybridIdxSetBuf`. | Nicholas Nethercote | -70/+73 |
| 2018-08-14 | Label definition of captured variables in errors. | David Wood | -7/+10 |
| 2018-08-08 | optimize redundant borrows | Niko Matsakis | -1/+1 |
| 2018-07-31 | Don't count MIR locals as borrowed after StorageDead when finding locals live... | John Kåre Alsaker | -4/+12 |
| 2018-07-24 | Auto merge of #52597 - oli-obk:promotion_simplify, r=nagisa | bors | -0/+4 |
| 2018-07-24 | Rollup merge of #52641 - ljedrz:mir_dataflow_misc, r=cramertj | kennytm | -12/+3 |
| 2018-07-23 | Simplify 2 functions in rustc_mir/dataflow | ljedrz | -12/+3 |
| 2018-07-23 | Remove unneded lifetimes relations declaration | Santiago Pastorino | -2/+2 |
| 2018-07-23 | Let mir reference lifetime be inferred | Santiago Pastorino | -2/+2 |
| 2018-07-23 | Promoteds are statics and statics have a place, not just a value | Oliver Schneider | -0/+4 |
| 2018-07-21 | Add specific message when moving from upvars in a non-FnOnce closure | Matthew Jasper | -5/+5 |
| 2018-07-17 | Auto merge of #52335 - nnethercote:BitSlice-fixes, r=nikomatsakis | bors | -27/+17 |
| 2018-07-13 | compute region values using SCCs not iterative flow | Niko Matsakis | -1/+1 |
| 2018-07-13 | Make BitSlice's `Word` properly generic. | Nicholas Nethercote | -15/+15 |
| 2018-07-13 | Inline and remove `DataflowAnalysis::num_bits_overall()`. | Nicholas Nethercote | -13/+3 |
| 2018-07-06 | Rollup merge of #52067 - csmoe:issue-51167, r=nikomatsakis | Mark Rousskov | -1/+2 |
| 2018-07-05 | reverse_postorder | csmoe | -1/+2 |
| 2018-07-03 | Address #51813 | Pramod Bisht | -44/+44 |
| 2018-07-01 | Auto merge of #51869 - nnethercote:rm-clone_from, r=nikomatsakis | bors | -2/+2 |
| 2018-06-29 | Rename `IdxSet::clone_from`. | Nicholas Nethercote | -2/+2 |
| 2018-06-27 | Group move errors before reporting, add suggestions | Matthew Jasper | -11/+10 |