| Age | Commit message (Expand) | Author | Lines |
| 2020-04-16 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -4/+3 |
| 2020-03-31 | Use Place directly, it's Copy even more use cases | Santiago Pastorino | -19/+19 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -4/+5 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -1/+1 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -3/+3 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -1/+1 |
| 2020-03-22 | don't create variable bindings just to return the bound value immediately (cl... | Matthias Krüger | -3/+2 |
| 2020-03-10 | Rollup merge of #69714 - spastorino:place-ref-lifetime, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -1/+1 |
| 2020-03-04 | PlaceRef<'a, 'tcx> -> PlaceRef<'tcx> | Santiago Pastorino | -1/+1 |
| 2020-03-04 | Make PlaceRef lifetimes of in_projection be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-02-19 | Reorder yield visitation order to match call | Jonas Schievink | -1/+1 |
| 2020-02-02 | Add resume arg place to `Yield` MIR terminator | Jonas Schievink | -1/+3 |
| 2020-01-28 | Place::ty_from takes local by value | Santiago Pastorino | -2/+2 |
| 2020-01-28 | Local field on PlaceRef and RootPlace is not a reference anymore | Santiago Pastorino | -1/+1 |
| 2020-01-27 | don't clone types that are copy, round two. | Matthias Krüger | -6/+4 |
| 2020-01-10 | Remove PlaceBase enum and make Place base field be local: Local | Santiago Pastorino | -9/+7 |
| 2020-01-10 | Remove Static from PlaceBase | Santiago Pastorino | -3/+0 |
| 2019-12-22 | Format the world | Mark Rousskov | -36/+26 |
| 2019-12-20 | Rollup merge of #67314 - matthewjasper:union-move-errors, r=nikomatsakis | Mazdak Farrokhzad | -9/+22 |
| 2019-12-19 | Don't suppress move errors for union fields | Matthew Jasper | -9/+22 |
| 2019-12-18 | Add Rvalue::AddressOf to MIR | Matthew Jasper | -0/+1 |
| 2019-12-09 | Remove `uniform_array_move_out` passes | Matthew Jasper | -38/+93 |
| 2019-10-22 | Move Place::elem methods and friends to TyCtxt | Santiago Pastorino | -1/+1 |
| 2019-10-22 | Intern place projection | Santiago Pastorino | -3/+3 |
| 2019-09-29 | remove indexed_vec re-export from rustc_data_structures | csmoe | -1/+1 |
| 2019-09-25 | Rename `sty` to `kind` | varkor | -2/+2 |
| 2019-09-11 | Make Place Boxed on Statement to reduce size from 64 bytes to 32 bytes | Santiago Pastorino | -1/+1 |
| 2019-09-09 | Use slice patterns to match projection base | Santiago Pastorino | -2/+1 |
| 2019-09-09 | Convert Place's projection to a boxed slice | Santiago Pastorino | -67/+67 |
| 2019-09-04 | Rustfmt the files I touched | Albin Stjerna | -98/+102 |
| 2019-07-22 | Place::as_place_ref is now Place::as_ref | Santiago Pastorino | -5/+5 |
| 2019-07-20 | Avoid unneeded else branches | Santiago Pastorino | -22/+13 |
| 2019-07-20 | Avoid cloning Place in gather_init | Santiago Pastorino | -13/+13 |
| 2019-07-20 | Avoid cloning Place in report_use_of_moved_or_uninitialized and friends | Santiago Pastorino | -1/+1 |
| 2019-07-20 | Migrate from Place enum to Place struct | Santiago Pastorino | -13/+30 |
| 2019-06-25 | Implement From<Local> for Place and PlaceBase | Santiago Pastorino | -3/+3 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -12/+12 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-06-09 | Changed usages of `mir` in librustc::mir and librustc_mir to `body` | Jad Ghalayini | -15/+15 |
| 2019-05-28 | Changes the type `mir::Mir` into `mir::Body` | Claude-Alban RANÉLY-VERGÉ-DÉPRÉ | -3/+3 |
| 2019-05-26 | Make move_path_for iterate instead of recurse | Santiago Pastorino | -14/+27 |
| 2019-05-25 | Inline move_path_for_projection inside move_path_for | Santiago Pastorino | -61/+53 |
| 2019-05-24 | Make place projections concrete. | Edd Barrett | -1/+1 |
| 2019-04-03 | Deny internal lints on librustc_mir | flip1995 | -1/+1 |
| 2019-04-03 | Rollup merge of #59630 - nnethercote:shrink-mir-Statement, r=pnkfelix | Mazdak Farrokhzad | -3/+3 |