| Age | Commit message (Expand) | Author | Lines |
| 2020-04-23 | Address comments from review | marmeladema | -5/+2 |
| 2020-04-23 | Modify `as_local_hir_id` to return a bare `HirId` | marmeladema | -19/+15 |
| 2020-04-23 | Modify `as_local_hir_id` to accept a `LocalDefId` instead of a `DefId` | marmeladema | -32/+46 |
| 2020-04-23 | librustc_middle: return LocalDefId instead of DefId in local_def_id | marmeladema | -1/+1 |
| 2020-04-23 | normalize field projection ty to fix broken MIR issue | Santiago Pastorino | -0/+1 |
| 2020-04-23 | Use `ConstCx` for `validate_candidates` | Oliver Scherer | -1/+1 |
| 2020-04-23 | Use ConstCx in more places | Oliver Scherer | -5/+11 |
| 2020-04-22 | Remove `predecessors_for` | Dylan MacKenzie | -3/+3 |
| 2020-04-22 | Move `{Free,}RegionRelations` and `FreeRegionMap` out of `rustc_middle` | Dylan MacKenzie | -1/+1 |
| 2020-04-22 | Use `Body` everywhere | Dylan MacKenzie | -64/+63 |
| 2020-04-22 | Don't use `*` for deref-coercion | Dylan MacKenzie | -39/+38 |
| 2020-04-21 | sccs are computed in dependency order | Niko Matsakis | -53/+5 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -114/+136 |
| 2020-04-18 | remove build warnings | Tshepang Lekhonkhobe | -5/+5 |
| 2020-04-17 | Auto merge of #71049 - eddyb:const-err, r=oli-obk | bors | -2/+2 |
| 2020-04-16 | mir/interpret: only use `ErrorHandled::Reported` for `ErrorReported`. | Eduard-Mihai Burtescu | -2/+2 |
| 2020-04-16 | compute SCCs in dependency order | Niko Matsakis | -33/+60 |
| 2020-04-16 | reserve variable for empty root region | Niko Matsakis | -16/+29 |
| 2020-04-16 | enforce that R1: R2 requires univ(R1) <= univ(R2) | Niko Matsakis | -5/+79 |
| 2020-04-16 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -1/+1 |
| 2020-04-15 | Fix clippy warnings | Matthias Krüger | -1/+1 |
| 2020-04-14 | borrow_check/type_check: normalize `Aggregate` and `Call` operands. | Eduard-Mihai Burtescu | -0/+2 |
| 2020-04-11 | Pass the `PlaceElem::Index` local to `visit_local` | Jonas Schievink | -1/+5 |
| 2020-04-10 | Rollup merge of #70913 - eddyb:rc-arc-diagnostic-items, r=matthewjasper | Mazdak Farrokhzad | -17/+20 |
| 2020-04-09 | Auto merge of #70860 - lcnr:has_local_value, r=nikomatsakis | bors | -3/+3 |
| 2020-04-08 | replace `has_local_value` with `needs_infer` | Bastian Kauschke | -3/+3 |
| 2020-04-08 | Suggest move for closures and async blocks in more cases. | Alex Aktsipetrov | -38/+20 |
| 2020-04-08 | Replace "rc"/"arc" lang items with Rc/Arc diagnostic items. | Eduard-Mihai Burtescu | -17/+20 |
| 2020-04-05 | Use smaller span for suggestion restricting lifetime | Esteban Küber | -27/+16 |
| 2020-04-03 | Minor follow-up after renaming librustc(_middle) | Yuki Okushi | -2/+2 |
| 2020-04-02 | direct imports for langitem stuff | Mazdak Farrokhzad | -1/+1 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -2/+2 |
| 2020-04-01 | Rollup merge of #70627 - spastorino:use-place-directly-its-copy, r=oli-obk | Mazdak Farrokhzad | -126/+119 |
| 2020-04-01 | Rollup merge of #70511 - ecstatic-morse:mir-dataflow-graphviz, r=davidtwco | Mazdak Farrokhzad | -1/+1 |
| 2020-03-31 | Use Place directly, it's Copy even more use cases | Santiago Pastorino | -26/+26 |
| 2020-03-31 | Use Place directly on remove_never_initialized_mut_locals, it's Copy | Santiago Pastorino | -4/+4 |
| 2020-03-31 | Use Place directly on borrow_of_local_data, it's Copy | Santiago Pastorino | -4/+4 |
| 2020-03-31 | Use Place directly on propagate_closure_used_mut_place, it's Copy | Santiago Pastorino | -4/+3 |
| 2020-03-31 | Use Place directly, it's Copy | Santiago Pastorino | -88/+82 |
| 2020-03-30 | Rollup merge of #70546 - lqd:polonius_update, r=nikomatsakis | Dylan DPC | -1/+1 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -88/+79 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -75/+75 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -132/+132 |
| 2020-03-30 | Auto merge of #70449 - ecstatic-morse:visit-body, r=oli-obk | bors | -11/+11 |
| 2020-03-30 | Polonius fact generation: fix path access fact location | Remy Rakic | -1/+1 |
| 2020-03-29 | Use `&` to do deref coercion for `ReadOnlyBodyAndCache` | Dylan MacKenzie | -10/+10 |
| 2020-03-29 | Tweak `suggest_constraining_type_param` | Esteban Küber | -2/+0 |
| 2020-03-29 | Make `Visitor::visit_body` take a simple `Body` | Dylan MacKenzie | -9/+9 |
| 2020-03-28 | `dump_enabled` takes a `DefId` instead of `MirSource` | Dylan MacKenzie | -1/+1 |
| 2020-03-27 | Auto merge of #68404 - Amanieu:llvm-asm, r=estebank | bors | -3/+3 |