| Age | Commit message (Expand) | Author | Lines |
| 2025-02-12 | Auto merge of #135994 - 1c3t3a:rename-unsafe-ptr, r=oli-obk | bors | -2/+2 |
| 2025-02-10 | compiler: die immediately instead of handling unknown target codegen | Jubilee Young | -7/+0 |
| 2025-02-10 | Rename rustc_middle::Ty::is_unsafe_ptr to is_raw_ptr | Bastian Kersting | -2/+2 |
| 2025-02-08 | Rustfmt | bjorn3 | -4/+5 |
| 2025-01-31 | Auto merge of #135318 - compiler-errors:vtable-fixes, r=lcnr | bors | -1/+6 |
| 2025-01-30 | Do not treat vtable supertraits as distinct when bound with different bound vars | Michael Goulet | -1/+6 |
| 2025-01-29 | Allow transmuting generic pattern types to and from their base | Oli Scherer | -0/+3 |
| 2025-01-27 | Add `TooGeneric` variant to `LayoutError` and emit `Unknown` one | FedericoBruzzone | -4/+10 |
| 2025-01-17 | Auto merge of #135047 - Flakebi:amdgpu-kernel-cc, r=workingjubilee | bors | -0/+1 |
| 2025-01-16 | Add gpu-kernel calling convention | Flakebi | -0/+1 |
| 2025-01-10 | Foo<T> != Foo<U> under layout randomization | The 8472 | -0/+1 |
| 2024-12-22 | Begin to implement type system layer of unsafe binders | Michael Goulet | -0/+5 |
| 2024-12-18 | make no-variant types a dedicated Variants variant | Ralf Jung | -12/+12 |
| 2024-12-18 | Variants::Single: do not use invalid VariantIdx for uninhabited enums | Ralf Jung | -5/+8 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -2/+1 |
| 2024-12-02 | rust_for_linux: -Zreg-struct-return commandline flag for X86 (#116973) | Andrew Zhogin | -1/+4 |
| 2024-11-23 | remove remaining references to `Reveal` | lcnr | -2/+2 |
| 2024-11-19 | move `fn is_item_raw` to `TypingEnv` | lcnr | -7/+7 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -52/+63 |
| 2024-11-08 | pointee_info_at: fix logic for recursing into enums | Ralf Jung | -11/+27 |
| 2024-11-03 | compiler: Directly use rustc_abi in metadata and middle | Jubilee Young | -29/+25 |
| 2024-10-29 | compiler: `rustc_abi::Abi` => `BackendRepr` | Jubilee Young | -3/+4 |
| 2024-10-28 | Rollup merge of #132255 - workingjubilee:layout-is-🏚️, r=compiler-errors | Jubilee | -1/+1 |
| 2024-10-28 | compiler: Add `is_uninhabited` and use LayoutS accessors | Jubilee Young | -1/+1 |
| 2024-10-27 | compiler: Rename LayoutS to LayoutData | Jubilee Young | -3/+3 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -1/+1 |
| 2024-10-21 | Rollup merge of #130432 - azhogin:azhogin/regparm, r=workingjubilee,pnkfelix | Jubilee | -1/+15 |
| 2024-10-19 | Get rid of const eval_* and try_eval_* helpers | Michael Goulet | -1/+1 |
| 2024-10-18 | rust_for_linux: -Zregparm=<N> commandline flag for X86 (#116972) | Andrew Zhogin | -1/+15 |
| 2024-10-08 | compiler: Factor rustc_target::abi::* out of middle::ty::layout | Jubilee Young | -7/+17 |
| 2024-10-04 | Use wide pointers consistenly across the compiler | Urgau | -7/+7 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -9/+8 |
| 2024-09-21 | Rollup merge of #127766 - folkertdev:c-cmse-nonsecure-entry, r=jackh726 | Michael Goulet | -0/+1 |
| 2024-09-21 | add `C-cmse-nonsecure-entry` ABI | Folkert de Vries | -0/+1 |
| 2024-09-20 | TL note: current means target | Jubilee Young | -1/+1 |
| 2024-09-18 | Rollup merge of #130457 - nnethercote:cleanup-codegen-traits, r=bjorn3 | Matthias Krüger | -2/+2 |
| 2024-09-17 | Use associative type defaults in `{Layout,FnAbi}OfHelpers`. | Nicholas Nethercote | -2/+2 |
| 2024-09-16 | layout computation: eagerly error for unexpected unsized fields | Lukas Markeffsky | -17/+10 |
| 2024-09-16 | make `LayoutCx` not generic | Lukas Markeffsky | -28/+9 |
| 2024-09-11 | Simplify some nested if statements | Michael Goulet | -4/+4 |
| 2024-09-06 | Make `Ty::boxed_ty` return an `Option` | Pavel Grigorenko | -2/+4 |
| 2024-08-25 | Avoid taking reference of &TyKind | Michael Goulet | -1/+1 |
| 2024-08-14 | Auto merge of #128812 - nnethercote:shrink-TyKind-FnPtr, r=compiler-errors | bors | -4/+6 |
| 2024-08-12 | Avoid a `FnPtr` deconstruct-and-recreate. | Nicholas Nethercote | -4/+5 |
| 2024-08-11 | Rename normalization functions to raw | Michael Goulet | -1/+1 |
| 2024-08-09 | Shrink `TyKind::FnPtr`. | Nicholas Nethercote | -2/+3 |
| 2024-08-08 | Rename struct_tail_erasing_lifetimes to struct_tail_for_codegen | Michael Goulet | -2/+2 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -15/+16 |
| 2024-07-11 | Remove extern "wasm" ABI | Nikita Popov | -1/+0 |
| 2024-06-25 | Auto merge of #125740 - RalfJung:transmute-size-check, r=oli-obk | bors | -8/+17 |