| Age | Commit message (Expand) | Author | Lines |
| 2022-11-17 | Auto merge of #104170 - cjgillot:hir-def-id, r=fee1-dead | bors | -6/+6 |
| 2022-11-17 | Auto merge of #103138 - nnethercote:merge-BBs, r=bjorn3 | bors | -338/+414 |
| 2022-11-16 | Rollup merge of #104317 - RalfJung:ctfe-error-reporting, r=oli-obk | Matthias Krüger | -1/+1 |
| 2022-11-16 | Rollup merge of #104137 - StackDoubleFlow:err-lsc-unsupported, r=bjorn3 | Matthias Krüger | -0/+7 |
| 2022-11-16 | Rollup merge of #103750 - calebzulawski:master, r=workingjubilee | Matthias Krüger | -0/+3 |
| 2022-11-16 | cleanup and dedupe CTFE and Miri error reporting | Ralf Jung | -1/+1 |
| 2022-11-16 | Merge basic blocks where possible when generating LLVM IR. | Nicholas Nethercote | -140/+257 |
| 2022-11-16 | Use `&mut Bx` more. | Nicholas Nethercote | -208/+167 |
| 2022-11-15 | Introduce composite debuginfo. | Camille GILLOT | -7/+69 |
| 2022-11-14 | Issue error when `-C link-self-contained` option is used on unsupported platf... | StackDoubleFlow | -0/+7 |
| 2022-11-15 | Auto merge of #104091 - BelovDV:issue-103044, r=petrochenkov | bors | -15/+40 |
| 2022-11-14 | Wrap bundlen static libraries into object files | Daniil Belov | -15/+40 |
| 2022-11-13 | Rollup merge of #104357 - RalfJung:is-sized, r=cjgillot | Matthias Krüger | -5/+5 |
| 2022-11-13 | Store a LocalDefId in hir::AnonConst. | Camille GILLOT | -6/+6 |
| 2022-11-13 | add is_sized method on Abi and Layout, and use it | Ralf Jung | -5/+5 |
| 2022-11-12 | Allow actual AVX512-related feature names in the case of some misleading aliases | Caleb Zulawski | -0/+3 |
| 2022-11-12 | linker: Link `profiler_builtins` even if it's marked as `NotLinked` | Vadim Petrochenkov | -3/+4 |
| 2022-11-12 | linker: Support mixing crates built with different values of `-Zpacked_bundle... | Vadim Petrochenkov | -9/+7 |
| 2022-11-12 | linker: Move some inner functions to the outside | Vadim Petrochenkov | -133/+127 |
| 2022-11-12 | linker: Simplify linking of `compiler_builtins` and `profiler_builtins` | Vadim Petrochenkov | -74/+46 |
| 2022-11-12 | linker: Factor out native library linking to a separate function | Vadim Petrochenkov | -213/+207 |
| 2022-11-11 | Rollup merge of #102215 - alexcrichton:wasm-link-whole-archive, r=estebank | Manish Goregaokar | -2/+2 |
| 2022-11-11 | rustc_codegen_ssa: Better code generation for niche discriminants. | Michael Benfield | -49/+145 |
| 2022-11-11 | Improve generating Custom entry function | Ayush Singh | -1/+2 |
| 2022-11-09 | Add constructor for `Diagnostic` that takes `Vec<(DiagnosticMessage, Style)>` | SLASHLogin | -2/+1 |
| 2022-11-09 | Add `replace_args` method for `rustc_errors::diagnostic::Diagnostic` | SLASHLogin | -3/+1 |
| 2022-11-09 | Delay diagnostic translation in `rustc_codegen_ssa` | SLASHLogin | -9/+18 |
| 2022-11-07 | Rollup merge of #104045 - Ayush1325:type_array, r=nikic | Yuki Okushi | -0/+1 |
| 2022-11-06 | Add type_array to BaseTypeMethods | Ayush Singh | -0/+1 |
| 2022-11-05 | Auto merge of #103691 - michaelwoerister:consistent-slice-and-str-cpp-like-de... | bors | -13/+13 |
| 2022-11-05 | Rollup merge of #103660 - ozkanonur:master, r=jyn514 | Dylan DPC | -1/+2 |
| 2022-11-04 | improve `filesearch::get_or_default_sysroot` r=ozkanonur | Onur Özkan | -1/+2 |
| 2022-11-04 | UPDATE - accept dyn error and make Box<dyn error> conform to IntoDiagnosticArg | Jhonny Bill Mena | -22/+21 |
| 2022-11-04 | UPDATE - address PR Comments | Jhonny Bill Mena | -83/+40 |
| 2022-11-04 | FIX - Migrate missing errors in link.rs | Jhonny Bill Mena | -4/+17 |
| 2022-11-04 | ADD - ExtractBundledLibsError. Migrated extract_bundled_libs to translatable ... | Jhonny Bill Mena | -19/+90 |
| 2022-11-04 | UPDATE - Complete link.rs migration to new diagnostics infraestructure | Jhonny Bill Mena | -80/+173 |
| 2022-11-01 | Rollup merge of #103638 - ia0:multivalue, r=nagisa | Manish Goregaokar | -0/+1 |
| 2022-10-31 | Rewrite implementation of `#[alloc_error_handler]` | Amanieu d'Antras | -4/+14 |
| 2022-10-31 | [debuginfo] Make debuginfo type names for slices and str consistent. | Michael Woerister | -13/+13 |
| 2022-10-31 | Rollup merge of #103603 - camsteffen:refactor-lang, r=oli-obk | Dylan DPC | -7/+6 |
| 2022-10-31 | Use `br` instead of `switch` in more cases. | Nicholas Nethercote | -2/+28 |
| 2022-10-29 | Cleanup weak lang items | Cameron Steffen | -7/+6 |
| 2022-10-27 | Add `multivalue` target feature to WASM target | Julien Cretin | -0/+1 |
| 2022-10-27 | Accept `TyCtxt` instead of `TyCtxtAt` in `Ty::is_*` functions | Maybe Waffle | -4/+3 |
| 2022-10-25 | Rollup merge of #103511 - nnethercote:bb-tweaks, r=bjorn3 | Dylan DPC | -82/+75 |
| 2022-10-25 | Simplify `cast_shift_expr_rhs`. | Nicholas Nethercote | -24/+18 |
| 2022-10-25 | Inline and remove `cast_shift_rhs`. | Nicholas Nethercote | -9/+0 |
| 2022-10-25 | Clarify some cleanup stuff. | Nicholas Nethercote | -6/+10 |
| 2022-10-25 | Rename two `TerminatorCodegenHelper` methods. | Nicholas Nethercote | -13/+16 |