| Age | Commit message (Expand) | Author | Lines |
| 2024-02-17 | Update comments and variable names | León Orell Valerian Liehr | -34/+39 |
| 2024-02-16 | Give the (`un`)`likely` intrinsics fallback bodies | Oli Scherer | -2/+2 |
| 2024-02-16 | Give the `assume` intrinsic a fallback body | Oli Scherer | -1/+1 |
| 2024-02-16 | Move trait into attr so it's greppable | Michael Goulet | -2/+2 |
| 2024-02-16 | Use extension trait derive | Michael Goulet | -10/+2 |
| 2024-02-16 | Auto merge of #120500 - oli-obk:intrinsics2.0, r=WaffleLapkin | bors | -129/+178 |
| 2024-02-16 | Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay | bors | -2/+3 |
| 2024-02-15 | Auto merge of #121142 - GuillaumeGomez:rollup-5qmksjw, r=GuillaumeGomez | bors | -2/+3 |
| 2024-02-15 | Auto merge of #120931 - chenyukang:yukang-cleanup-hashmap, r=michaelwoerister | bors | -34/+34 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -2/+3 |
| 2024-02-14 | Continue compilation even if inherent impl checks fail | Oli Scherer | -2/+3 |
| 2024-02-14 | Auto merge of #120847 - oli-obk:track_errors9, r=compiler-errors | bors | -2/+4 |
| 2024-02-14 | Continue compilation after check_mod_type_wf errors | Oli Scherer | -2/+4 |
| 2024-02-14 | Rollup merge of #121071 - nnethercote:fewer-delayed-bugs, r=oli-obk | Oli Scherer | -7/+7 |
| 2024-02-14 | Rollup merge of #120530 - trevyn:issue-116434, r=compiler-errors | Oli Scherer | -1/+1 |
| 2024-02-14 | clean up potential_query_instability with FxIndexMap and UnordMap | yukang | -34/+34 |
| 2024-02-14 | Use fewer delayed bugs. | Nicholas Nethercote | -7/+7 |
| 2024-02-14 | Auto merge of #121018 - oli-obk:impl_unsafety, r=TaKO8Ki | bors | -69/+79 |
| 2024-02-13 | Bump `indexmap` | clubby789 | -2/+4 |
| 2024-02-13 | Just pass the checker instead of individual fields | Oli Scherer | -39/+33 |
| 2024-02-13 | Remove an `impl_polarity` call where the information is already available in ... | Oli Scherer | -16/+23 |
| 2024-02-13 | Avoid using the HIR span in the happy path | Oli Scherer | -5/+8 |
| 2024-02-13 | Don't reinvoke `trait_header` query twice | Oli Scherer | -11/+11 |
| 2024-02-13 | Invoke `trait_def` query only once | Oli Scherer | -10/+13 |
| 2024-02-13 | Store impl unsafety in impl trait header | Oli Scherer | -24/+27 |
| 2024-02-13 | Auto merge of #120919 - oli-obk:impl_polarity, r=compiler-errors | bors | -56/+54 |
| 2024-02-12 | Rollup merge of #120958 - ShoyuVanilla:remove-subst, r=oli-obk | Matthias Krüger | -74/+80 |
| 2024-02-12 | Support safe intrinsics with fallback bodies | Oli Scherer | -3/+8 |
| 2024-02-12 | Give const_deallocate a default body | Oli Scherer | -1/+1 |
| 2024-02-12 | Teach llvm backend how to fall back to default bodies | Oli Scherer | -1/+1 |
| 2024-02-12 | Check signature of intrinsics with fallback bodies | Oli Scherer | -8/+31 |
| 2024-02-12 | Auto merge of #120980 - matthiaskrgr:rollup-dsjsqql, r=matthiaskrgr | bors | -22/+17 |
| 2024-02-12 | Rollup merge of #120972 - lukas-code:autoderef-type-error, r=compiler-errors | Matthias Krüger | -7/+11 |
| 2024-02-12 | Rollup merge of #120917 - chenyukang:yukang-dead-parameters, r=compiler-errors | Matthias Krüger | -12/+3 |
| 2024-02-12 | Rollup merge of #120833 - nnethercote:more-internal-emit_diagnostics-cleanups... | Matthias Krüger | -3/+3 |
| 2024-02-12 | support adding const generic params to intrinsics | Oli Scherer | -92/+104 |
| 2024-02-12 | Make check_intrinsic_type not require ForeignItems anymore | Oli Scherer | -19/+24 |
| 2024-02-12 | Auto merge of #115367 - frank-king:feature/unnamed-fields-hir, r=davidtwco | bors | -25/+354 |
| 2024-02-12 | fix ICE for deref coercions with type errors | Lukas Markeffsky | -7/+11 |
| 2024-02-12 | Make the signature of equate_intrinsic_type support items other than `Foreign... | Oli Scherer | -18/+22 |
| 2024-02-12 | Remove impl_polarity query | Oli Scherer | -6/+0 |
| 2024-02-12 | Stop calling `impl_polarity` when `impl_trait_ref` was also called | Oli Scherer | -27/+31 |
| 2024-02-12 | Use a struct instead of a tuple | Oli Scherer | -3/+6 |
| 2024-02-12 | Make impl_trait_ref into a query also returning more information about the impl | Oli Scherer | -27/+24 |
| 2024-02-12 | Tweak delayed bug mentions. | Nicholas Nethercote | -3/+3 |
| 2024-02-12 | Auto merge of #120835 - oli-obk:no_hir_coherence, r=cjgillot | bors | -99/+97 |
| 2024-02-12 | Dejargnonize subst | Shoyu Vanilla | -74/+80 |
| 2024-02-12 | Auto merge of #120834 - oli-obk:only_local_coherence, r=lcnr | bors | -1/+3 |
| 2024-02-12 | Improve some codes according to the reviews | Frank King | -107/+151 |
| 2024-02-12 | Check representation of unnamed fields | Frank King | -1/+84 |