| Age | Commit message (Expand) | Author | Lines |
| 2019-08-19 | Fix suggestion from move async to async move. | Giles Cope | -1/+10 |
| 2019-08-16 | Remove redundant `ty` fields from `mir::Constant` and `hair::pattern::Pattern... | Eduard-Mihai Burtescu | -40/+4 |
| 2019-08-07 | Rollup merge of #63308 - spastorino:place-ref-base-is-ref, r=oli-obk | Mazdak Farrokhzad | -10/+10 |
| 2019-08-06 | Rollup merge of #63230 - tmandry:disallow-possibly-uninitialized, r=Centril | Mazdak Farrokhzad | -1/+14 |
| 2019-08-06 | PlaceRef's base is already a reference | Santiago Pastorino | -10/+10 |
| 2019-08-05 | Make use of possibly uninitialized data a hard error | Tyler Mandry | -1/+14 |
| 2019-08-05 | Fiddle param env through to `try_eval_bits` in most places | Oliver Scherer | -10/+39 |
| 2019-08-05 | Don't abort on unevaluated constants without at least tryting to eval them | Oliver Scherer | -2/+2 |
| 2019-08-03 | Auto merge of #63180 - varkor:trait-alias-impl-trait, r=Centril | bors | -7/+6 |
| 2019-08-02 | Rollup merge of #63203 - spastorino:is-mutable-use-place-ref, r=oli-obk | Mazdak Farrokhzad | -62/+71 |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -7/+6 |
| 2019-08-01 | Make is_mutable use PlaceRef instead of it's fields | Santiago Pastorino | -62/+71 |
| 2019-07-29 | use PanicInfo and UnsupportedOpInfo | Saleem Jaffer | -6/+6 |
| 2019-07-28 | Remove lint annotations in specific crates that are already enforced by rustb... | Vadim Petrochenkov | -2/+0 |
| 2019-07-28 | Rollup merge of #63051 - estebank:borrow-ice, r=matthewjasper | Mazdak Farrokhzad | -13/+12 |
| 2019-07-27 | Avoid ICE when referencing desugared local binding in borrow error | Esteban Küber | -13/+12 |
| 2019-07-27 | Rollup merge of #62423 - Aaron1011:fix/existential-cycle, r=oli-obk | Mazdak Farrokhzad | -5/+33 |
| 2019-07-26 | clarify and unify some type test names | Ralf Jung | -2/+2 |
| 2019-07-25 | Rollup merge of #62736 - lqd:polonius_tests3, r=matthewjasper | Mazdak Farrokhzad | -17/+120 |
| 2019-07-24 | use PanicMessage type for MIR assertion errors | Ralf Jung | -6/+6 |
| 2019-07-23 | Rollup merge of #62859 - spastorino:rename-to-as-ref, r=Centril | Mark Rousskov | -58/+58 |
| 2019-07-23 | Rollup merge of #60951 - saleemjaffer:mir_better_error_enum, r=oli-obk | Mark Rousskov | -6/+6 |
| 2019-07-23 | renames EvalErrorPanic to PanicMessage | Saleem Jaffer | -5/+5 |
| 2019-07-23 | moving some variants from InterpError to EvalErrorPanic | Saleem Jaffer | -6/+6 |
| 2019-07-22 | Polonius: generate `killed` facts for assignments to projections | lqd | -14/+75 |
| 2019-07-22 | Polonius facts: kill loans on Call terminators and StorageDead | lqd | -16/+58 |
| 2019-07-22 | Place::as_place_ref is now Place::as_ref | Santiago Pastorino | -58/+58 |
| 2019-07-20 | Avoid cloning Place in report_cannot_move_from_borrowed_content | Santiago Pastorino | -12/+12 |
| 2019-07-20 | Avoid cloning Place in report_cannot_move_from_static | Santiago Pastorino | -4/+4 |
| 2019-07-20 | Avoid cloning Place in check_access_permissions | Santiago Pastorino | -28/+36 |
| 2019-07-20 | Avoid cloning Place in append_place_to_string | Santiago Pastorino | -14/+15 |
| 2019-07-20 | Avoid cloning Place in classify_drop_access_kind | Santiago Pastorino | -5/+5 |
| 2019-07-20 | Avoid cloning Place in describe_place_for_conflicting_borrow | Santiago Pastorino | -37/+42 |
| 2019-07-20 | Avoid cloning Place in report_use_of_moved_or_uninitialized and friends | Santiago Pastorino | -213/+214 |
| 2019-07-20 | Remove explicit lifetime | Santiago Pastorino | -3/+3 |
| 2019-07-20 | Migrate from Place enum to Place struct | Santiago Pastorino | -441/+796 |
| 2019-07-18 | Auto merge of #61749 - davidtwco:rfc-2203-const-array-repeat-exprs, r=eddyb | bors | -33/+57 |
| 2019-07-14 | `pub(crate)` -> `crate` | Matthew Jasper | -2/+2 |
| 2019-07-14 | Move suggest_ref_mut into rustc_mir::borrow_check | Matthew Jasper | -1/+14 |
| 2019-07-14 | Remove BorrowckErrors trait | Matthew Jasper | -57/+46 |
| 2019-07-14 | Remove rustc_mir::borrowck_errors::Origin | Matthew Jasper | -46/+17 |
| 2019-07-13 | Auto merge of #62468 - rust-lang:mutable-overloaded-operators, r=estebank | bors | -194/+185 |
| 2019-07-12 | rustfmt all the things! | Albin Stjerna | -91/+28 |
| 2019-07-12 | polonius: add generation of liveneness-related facts | Albin Stjerna | -20/+190 |
| 2019-07-11 | Rename some things in `syntax_pos/hygiene` | Vadim Petrochenkov | -3/+3 |
| 2019-07-07 | Address review comments | Aaron Hill | -3/+3 |
| 2019-07-07 | Fix bug when opaque type was nested in another type. | Aaron Hill | -28/+35 |
| 2019-07-07 | Fix cycle error with existential types | Aaron Hill | -2/+23 |
| 2019-07-07 | rustc_mir: Re-use `report_selection_error`. | David Wood | -20/+20 |
| 2019-07-07 | rustc/rustc_mir: Implement RFC 2203. | David Wood | -32/+56 |