| Age | Commit message (Expand) | Author | Lines |
| 2019-09-02 | Auto merge of #63561 - HeroicKatora:alloc-private-bytes, r=oli-obk | bors | -2/+2 |
| 2019-08-29 | Make allocation relocation field private | Andreas Molzer | -2/+2 |
| 2019-08-22 | Fix tidy | Wesley Wiser | -4/+5 |
| 2019-08-22 | Move def_id out add substsref | Wesley Wiser | -22/+19 |
| 2019-08-22 | Move promoted out of mir::Body | Wesley Wiser | -15/+18 |
| 2019-08-04 | Rename `ItemKind::Ty` to `ItemKind::TyAlias` | varkor | -1/+1 |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -1/+1 |
| 2019-07-16 | Normalize the trait_ref | Alessandro Decina | -6/+5 |
| 2019-07-15 | Normalize type parameters in create_mono_items_for_default_impls. | Alessandro Decina | -1/+6 |
| 2019-07-12 | Replace `struct_tail` and `struct_lockstep_tails` with variants handling norm... | Felix S. Klock II | -3/+4 |
| 2019-07-06 | normalize use of backticks/lowercase in compiler messages for librustc_mir | Samy Kacimi | -2/+2 |
| 2019-07-04 | rename hir::map::local_def_id_from_hir_id to local_def_id | ljedrz | -10/+10 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -10/+10 |
| 2019-06-19 | Change `ByRef` to a struct variant to clarify its fields via names | Oliver Scherer | -1/+1 |
| 2019-06-19 | Weave the alignment through `ByRef` | Oliver Scherer | -1/+1 |
| 2019-06-18 | rustc: reintroduce lifetime bounds where necessary. | Eduard-Mihai Burtescu | -2/+4 |
| 2019-06-18 | rustc: remove unused lifetimes. | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-18 | rustc: remove leftover lifetimes with no bounds from where clauses. | Eduard-Mihai Burtescu | -1/+0 |
| 2019-06-18 | rustc: remove 'x: 'y bounds (except from comments/strings). | Eduard-Mihai Burtescu | -4/+4 |
| 2019-06-17 | remove _by_hir_id if there is no NodeId counterpart | ljedrz | -2/+2 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -13/+3 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -44/+44 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -110/+131 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -41/+41 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -24/+24 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -48/+48 |
| 2019-06-11 | rustc_mir: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -1/+1 |
| 2019-06-09 | Changed usages of `mir` in librustc::mir and librustc_mir to `body` | Jad Ghalayini | -11/+11 |
| 2019-06-06 | Rollup merge of #61554 - spastorino:change_visit_api, r=oli-obk | Mazdak Farrokhzad | -12/+13 |
| 2019-06-06 | Implement only visit_place_base for monomorphize/collector | Santiago Pastorino | -12/+13 |
| 2019-06-05 | Aggregation of drive-by cosmetic changes. | Alexander Regueiro | -30/+25 |
| 2019-06-02 | move codegenunitext to rustc::mir::mono | Mark Mansi | -89/+1 |
| 2019-06-02 | move monoitemext to inherent methods | Mark Mansi | -8/+2 |
| 2019-06-02 | move DefPathBasedNames to ty::print::obsolete | Mark Mansi | -296/+7 |
| 2019-06-02 | remove reexports of mir::mono::{MonoItem,CodegenUnit} | Mark Mansi | -8/+5 |
| 2019-06-02 | move single-use function | Mark Mansi | -45/+45 |
| 2019-06-02 | deduplicate ty::Instance constructors | Mark Mansi | -89/+4 |
| 2019-06-02 | remove reexport of rustc::ty::Instance | Mark Mansi | -2/+1 |
| 2019-05-30 | rename did -> def_id | Ralf Jung | -7/+7 |
| 2019-05-30 | light refactoring of global AllocMap | Ralf Jung | -4/+4 |
| 2019-05-28 | Changes the type `mir::Mir` into `mir::Body` | Claude-Alban RANÉLY-VERGÉ-DÉPRÉ | -2/+2 |
| 2019-05-26 | Rename "Associated*" to "Assoc*" | Andrew Xu | -1/+1 |
| 2019-05-25 | Fix rebase fallout | Oliver Scherer | -1/+1 |
| 2019-05-25 | Make `ConstValue::Slice` solely take `[u8]` and `str` | Oliver Scherer | -2/+2 |
| 2019-05-25 | Don't use `ty::Const` without immediately interning | Oliver Scherer | -2/+2 |
| 2019-05-20 | Introduce `InternedString::intern`. | Nicholas Nethercote | -2/+2 |
| 2019-05-06 | Clean up `push_const_name` | varkor | -14/+26 |
| 2019-05-04 | rustc: collapse relevant DefPathData variants into TypeNs. | Eduard-Mihai Burtescu | -25/+19 |
| 2019-05-01 | Add `ConstValue::Placeholder` | varkor | -1/+1 |
| 2019-05-01 | Auto merge of #60195 - varkor:commontypes-to-common, r=eddyb | bors | -1/+1 |