| Age | Commit message (Expand) | Author | Lines |
| 2020-05-29 | Add Extend::{extend_one,extend_reserve} | Josh Stone | -0/+8 |
| 2020-05-28 | Auto merge of #72494 - lcnr:predicate-cleanup, r=nikomatsakis | bors | -26/+20 |
| 2020-05-27 | Auto merge of #71996 - Marwes:detach_undo_log, r=nikomatsakis | bors | -0/+2 |
| 2020-05-24 | perf: Add inline on commonly used methods added in 69464 | Markus Westerlind | -0/+2 |
| 2020-05-23 | fix Predicate perf regression | Bastian Kauschke | -18/+12 |
| 2020-05-23 | take predicates by value instead of by reference | Bastian Kauschke | -8/+8 |
| 2020-05-20 | change `Predicate::kind` to return a reference | Bastian Kauschke | -9/+9 |
| 2020-05-20 | intern `PredicateKind` | Bastian Kauschke | -1/+1 |
| 2020-05-20 | introduce newtype'd `Predicate<'tcx>` | Bastian Kauschke | -12/+22 |
| 2020-05-20 | make `to_predicate` take a `tcx` argument | Niko Matsakis | -3/+3 |
| 2020-05-20 | rename `Predicate` to `PredicateKind`, introduce alias | Bastian Kauschke | -30/+30 |
| 2020-05-17 | Assume unevaluated consts are equal to the other consts and add ConstEquate o... | Ben Lewis | -1/+11 |
| 2020-05-11 | Fix clippy warnings | Matthias Krüger | -3/+2 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -2/+2 |
| 2020-05-05 | Fix review comments | Markus Westerlind | -3/+3 |
| 2020-05-05 | Rebase and use ena 0.14 | Markus Westerlind | -3/+7 |
| 2020-05-05 | refactor: Rename Logs to InferCtxtUndoLogs | Markus Westerlind | -4/+9 |
| 2020-05-05 | Move projection_cache into the combined undo log | Markus Westerlind | -26/+41 |
| 2020-05-05 | Allow SnapshotMap to have a separate undo_log | Markus Westerlind | -4/+0 |
| 2020-04-20 | Remove some allocations in predicate evaluation | Esteban Küber | -4/+3 |
| 2020-04-20 | Remove some `Vec` allocations in an effort to improve perf | Esteban Küber | -6/+4 |
| 2020-04-12 | Update links of `rustc guide` | Yuki Okushi | -2/+2 |
| 2020-04-11 | Auto merge of #70161 - cjgillot:query-arena, r=nikomatsakis | bors | -1/+1 |
| 2020-04-08 | Use `PredicateObligation`s instead of `Predicate`s | Esteban Küber | -20/+48 |
| 2020-04-05 | Allocate query Vecs on the arena. | Camille GILLOT | -1/+1 |
| 2020-04-01 | Remove duplicated code in trait selection | Esteban Küber | -3/+79 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -5/+5 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -12/+12 |
| 2020-03-25 | Rename `def_span` to `guess_head_span` | Esteban Küber | -3/+3 |
| 2020-03-21 | don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -2/+2 |
| 2020-03-14 | Split librustc_infer. | Camille GILLOT | -0/+807 |
| 2020-03-14 | Move rustc_infer::traits to new crate rustc_trait_selection. | Camille GILLOT | -16620/+0 |
| 2020-03-14 | Mode ProjectionCache to its own module. | Camille GILLOT | -184/+198 |
| 2020-03-14 | Move traits::query::outlives_bounds::explicit_outlives_bounds to infer::outli... | Camille GILLOT | -19/+0 |
| 2020-03-14 | Move IntercrateAmbiguityCause back to rustc::traits::select. | Camille GILLOT | -41/+0 |
| 2020-03-14 | Rollup merge of #69809 - matthiaskrgr:lifetimes, r=eddyb | Yuki Okushi | -1/+1 |
| 2020-03-14 | Rollup merge of #69802 - matthiaskrgr:cl1ppy, r=Dylan-DPC | Yuki Okushi | -8/+3 |
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -1/+1 |
| 2020-03-12 | Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbini | Mazdak Farrokhzad | -17/+17 |
| 2020-03-12 | Rollup merge of #69674 - mark-i-m:assoc-fn, r=matthewjasper | Mazdak Farrokhzad | -4/+4 |
| 2020-03-10 | rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org | Santiago Pastorino | -8/+8 |
| 2020-03-10 | Rename Rustc Guide to Rustc Dev Guide | Santiago Pastorino | -2/+2 |
| 2020-03-10 | Rename rustc guide to rustc dev guide | Santiago Pastorino | -10/+10 |
| 2020-03-10 | Rename rustc-guide to rustc-dev-guide | Santiago Pastorino | -8/+8 |
| 2020-03-07 | remove unneeded mutable references (cippy::unnecessary_mut_passed) | Matthias Krüger | -2/+2 |
| 2020-03-07 | Use ?-operator in more places (clippy::question_mark, had some false negative... | Matthias Krüger | -6/+1 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -5/+5 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -5/+5 |
| 2020-03-06 | fix various typos | Matthias Krüger | -5/+5 |
| 2020-03-06 | Auto merge of #69614 - estebank:ice-age, r=davidtwco | bors | -7/+11 |