| Age | Commit message (Expand) | Author | Lines |
| 2023-06-16 | Rollup merge of #112474 - ldm0:ldm_enum_debuginfo_128_support, r=compiler-errors | Michael Goulet | -8/+6 |
| 2023-06-14 | Introduce a minimum CGU size in non-incremental builds. | Nicholas Nethercote | -1/+1 |
| 2023-06-10 | Support 128-bit enum variant in debuginfo codegen | DonoughLiu | -8/+6 |
| 2023-06-08 | Auto merge of #110040 - ndrewxie:issue-84447-partial-1, r=lcnr,michaelwoerister | bors | -2/+2 |
| 2023-06-04 | Removed use of iteration through a HashMap/HashSet in rustc_incremental and r... | Andrew Xie | -2/+2 |
| 2023-06-04 | Use `load`-`store` instead of `memcpy` for short integer arrays | Scott McMurray | -0/+36 |
| 2023-06-02 | Rollup merge of #111647 - klensy:cstr, r=oli-obk | Matthias Krüger | -59/+48 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -21/+27 |
| 2023-05-31 | Add a distinct `OperandValue::ZeroSized` variant for ZSTs | Scott McMurray | -3/+2 |
| 2023-05-31 | use new c literals instead of cstr! macro | klensy | -59/+48 |
| 2023-05-30 | Auto merge of #112102 - Nilstrieb:rollup-ivu1hmc, r=Nilstrieb | bors | -1/+1 |
| 2023-05-30 | Auto merge of #111768 - oli-obk:pair_const_llvm, r=cjgillot | bors | -32/+17 |
| 2023-05-29 | EarlyBinder::new -> EarlyBinder::bind | lcnr | -1/+1 |
| 2023-05-28 | Replace EarlyBinder(x) with EarlyBinder::new(x) | Kyle Matsuda | -1/+1 |
| 2023-05-26 | Add SafeStack support to rustc | Wesley Wiser | -0/+4 |
| 2023-05-26 | Stop creating intermediate places just to immediate convert them to operands | Oli Scherer | -32/+17 |
| 2023-05-25 | Auto merge of #86844 - bjorn3:global_alloc_improvements, r=pnkfelix | bors | -66/+79 |
| 2023-05-24 | Use `is_some_and`/`is_ok_and` in less obvious spots | Maybe Waffle | -2/+1 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -1/+1 |
| 2023-05-22 | Create a structure to define the features from to_llvm_features. | Jamie Cunliffe | -65/+128 |
| 2023-05-22 | Only disable folded features when it makes sense. | Jamie Cunliffe | -5/+31 |
| 2023-05-22 | Tie neon with fp-armv8. | Jamie Cunliffe | -2/+4 |
| 2023-05-19 | Auto merge of #111641 - michaelwoerister:debugger-visualizer-fixes, r=cjgillot | bors | -2/+1 |
| 2023-05-18 | Auto merge of #111345 - jyn514:cfg-release-caching, r=cjgillot,est31 | bors | -2/+1 |
| 2023-05-17 | Only depend on CFG_VERSION in rustc_interface | jyn | -2/+1 |
| 2023-05-18 | Auto merge of #111364 - cuviper:unhack-thinlto, r=nikic | bors | -55/+0 |
| 2023-05-16 | Move DebuggerVisualizerFile types from rustc_span to rustc_middle | Michael Woerister | -2/+1 |
| 2023-05-15 | Auto merge of #107707 - calebzulawski:remove-features, r=Amanieu | bors | -6/+0 |
| 2023-05-15 | Move expansion of query macros in rustc_middle to rustc_middle::query | John Kåre Alsaker | -1/+1 |
| 2023-05-11 | Rollup merge of #111375 - rcvalle:rust-cfi-fix-106547, r=bjorn3 | Michael Goulet | -21/+52 |
| 2023-05-11 | Prevent insta-stable no alloc shim support | bjorn3 | -1/+9 |
| 2023-05-11 | Use global_fn_name instead of format! | bjorn3 | -2/+3 |
| 2023-05-11 | Split AllocatorKind::fn_name in global_fn_name and default_fn_name | bjorn3 | -2/+2 |
| 2023-05-11 | Don't use an allocator shim for `#[global_allocator]` | bjorn3 | -66/+70 |
| 2023-05-09 | CFI: Fix SIGILL reached via trait objects | Ramon de C Valle | -21/+52 |
| 2023-05-09 | Isolate coverage FFI type layouts from their underlying LLVM C++ types | Zalathar | -2/+6 |
| 2023-05-08 | Remove the ThinLTO CU hack | Josh Stone | -55/+0 |
| 2023-05-08 | Rollup merge of #104070 - nbdd0121:unwind, r=Amanieu | Michael Goulet | -1/+8 |
| 2023-05-08 | Rollup merge of #111332 - loongarch-rs:inline-asm, r=Amanieu | Yuki Okushi | -1/+12 |
| 2023-05-08 | Rollup merge of #111331 - taiki-e:s390x-asm-cc, r=Amanieu | Yuki Okushi | -1/+3 |
| 2023-05-08 | Mark s390x condition code register as clobbered in inline assembly | Taiki Endo | -1/+3 |
| 2023-05-08 | Mark LoongArch float-point condition flags as clobbered in inline assembly | WANG Rui | -1/+12 |
| 2023-05-07 | Fix num reserved clauses for landing pad | Gary Guo | -2/+2 |
| 2023-05-07 | Use `landingpad filter` to encode aborting landing pad | Gary Guo | -0/+7 |
| 2023-05-06 | make (try_)subst_and_normalize_erasing_regions take EarlyBinder | Kyle Matsuda | -2/+2 |
| 2023-05-06 | Rollup merge of #111203 - Kobzol:remark-print-kind, r=tmiasko | Matthias Krüger | -0/+11 |
| 2023-05-06 | Rollup merge of #111167 - cuviper:type-decl-disubprogram, r=michaelwoerister | Matthias Krüger | -34/+66 |
| 2023-05-06 | Rollup merge of #109677 - dpaoliello:rawdylib, r=michaelwoerister,wesleywiser | Yuki Okushi | -5/+10 |
| 2023-05-04 | added SAFETY comment | James Dietz | -0/+3 |
| 2023-05-04 | change expect() to unwrap_or_else() and update msg | James Dietz | -1/+1 |