| Age | Commit message (Expand) | Author | Lines |
| 2021-11-25 | Rollup merge of #91096 - compiler-errors:elaborate_opaque_trait, r=estebank | Matthias Krüger | -75/+230 |
| 2021-11-23 | Fix printing unit return ty, don't elaborate FnOnce unless we see it | Michael Goulet | -7/+16 |
| 2021-11-23 | Suppress noisy generator associated type | Michael Goulet | -4/+14 |
| 2021-11-23 | Elaborate trait generics and associated types | Michael Goulet | -74/+210 |
| 2021-11-23 | Derive Ord and PartialOrd for TraitRef | Michael Goulet | -1/+1 |
| 2021-11-22 | Use `derive_default_enum` in the compiler | Jacob Pratt | -7/+2 |
| 2021-11-20 | Add space in opaque `impl Trait` | Michael Goulet | -3/+3 |
| 2021-11-20 | Rollup merge of #91021 - compiler-errors:print_future_output, r=estebank | Matthias Krüger | -11/+55 |
| 2021-11-20 | Rollup merge of #90999 - RalfJung:miri_simd, r=oli-obk | Matthias Krüger | -0/+5 |
| 2021-11-19 | Rollup merge of #90990 - nnethercote:arenas-cleanup, r=oli-obk | Yuki Okushi | -9/+9 |
| 2021-11-18 | Print output ty for opaque future ty | Michael Goulet | -11/+55 |
| 2021-11-18 | fix CTFE/Miri simd_insert/extract on array-style repr(simd) types | Ralf Jung | -0/+5 |
| 2021-11-18 | rustc: Remove `#[rustc_synthetic]` | Vadim Petrochenkov | -18/+3 |
| 2021-11-17 | Remove unnecessary lifetime argument from arena macros. | Nicholas Nethercote | -9/+9 |
| 2021-11-16 | Rollup merge of #90910 - RalfJung:const-discriminant-empty-enum, r=petrochenkov | Yuki Okushi | -1/+3 |
| 2021-11-14 | fix getting the discriminant of a zero-variant enum | Ralf Jung | -1/+3 |
| 2021-11-11 | Use `associated_item_def_ids` more | Matthew Jasper | -6/+6 |
| 2021-11-09 | Add `ty::Visibility::is_public()` | inquisitivecrystal | -1/+5 |
| 2021-11-09 | Rollup merge of #90035 - SparrowLii:rfc2528, r=jackh726 | Matthias Krüger | -0/+4 |
| 2021-11-07 | Rename functions reflect that inline const is also "typeck_child" | Gary Guo | -9/+10 |
| 2021-11-07 | Implement type inference for inline consts | Gary Guo | -21/+158 |
| 2021-11-07 | Give inline const separate DefKind | Gary Guo | -1/+2 |
| 2021-11-06 | type error go brrrrrrrr | Ellen | -2/+6 |
| 2021-11-06 | Auto merge of #88441 - jackh726:closure_norm, r=nikomatsakis | bors | -0/+1 |
| 2021-11-05 | Update LLVM comments around NoAliasMutRef | Josh Stone | -3/+4 |
| 2021-10-28 | implement type-changing-struct-update | SparrowLii | -0/+4 |
| 2021-10-25 | Avoid a branch on key being local for queries that use the same local and ext... | bjorn3 | -0/+50 |
| 2021-10-23 | Auto merge of #90104 - spastorino:coherence-for-negative-trait, r=nikomatsakis | bors | -9/+93 |
| 2021-10-22 | Document flip polarity | Santiago Pastorino | -0/+4 |
| 2021-10-20 | Build jump table at runtime. | Camille GILLOT | -1/+1 |
| 2021-10-20 | Merge two query callbacks arrays. | Camille GILLOT | -1/+8 |
| 2021-10-20 | Move def_path_hash_to_def_id to rustc_middle. | Camille GILLOT | -5/+21 |
| 2021-10-20 | Avoid trivial lambdas. | Camille GILLOT | -4/+6 |
| 2021-10-20 | Add polarity to TraitPredicate | Santiago Pastorino | -9/+89 |
| 2021-10-19 | Auto merge of #89933 - est31:let_else, r=michaelwoerister | bors | -12/+5 |
| 2021-10-18 | Auto merge of #89124 - cjgillot:owner-info, r=michaelwoerister | bors | -7/+3 |
| 2021-10-18 | Normalize obligations for closure confirmation | jackh726 | -0/+1 |
| 2021-10-17 | Rollup merge of #89946 - JohnTitor:fix-89686, r=petrochenkov | Matthias Krüger | -5/+10 |
| 2021-10-17 | Rollup merge of #89738 - eddyb:extern-crate-recursion, r=nagisa | Matthias Krüger | -10/+18 |
| 2021-10-17 | Auto merge of #89514 - davidtwco:polymorphize-shims-and-predicates, r=lcnr | bors | -12/+33 |
| 2021-10-16 | Fix an ICE with TAITs and Future | Yuki Okushi | -5/+10 |
| 2021-10-16 | Adopt let_else across the compiler | est31 | -12/+5 |
| 2021-10-15 | Move push_outlives_components to rustc_infer | jackh726 | -214/+0 |
| 2021-10-12 | Filter unstable and doc hidden variants in usefulness checking | Devin Ragotzy | -1/+9 |
| 2021-10-10 | ty::pretty: prevent infinite recursion for `extern crate` paths. | Eduard-Mihai Burtescu | -1/+8 |
| 2021-10-10 | ty::pretty: document "dummy Span extern crate" special-case in `try_print_vis... | Eduard-Mihai Burtescu | -10/+11 |
| 2021-10-10 | Auto merge of #88952 - skrap:add-armv7-uclibc, r=nagisa | bors | -2/+2 |
| 2021-10-09 | Forbid hashing HIR outside of indexing. | Camille GILLOT | -6/+1 |
| 2021-10-09 | Store lowering outputs per owner. | Camille GILLOT | -1/+2 |
| 2021-10-08 | Rollup merge of #89649 - matthiaskrgr:clippycompl, r=jyn514 | Guillaume Gomez | -2/+2 |