| Age | Commit message (Expand) | Author | Lines |
| 2024-10-07 | Rollup merge of #131351 - jieyouxu:yeet-the-valgrind, r=Kobzol | Jubilee | -96/+29 |
| 2024-10-07 | bump rustc_tools_util version | Ralf Jung | -4/+4 |
| 2024-10-07 | Migrate `emit-to-stdout` to new run-make | clubby789 | -4/+3 |
| 2024-10-07 | Add stdio configuring to run-make Rustc | clubby789 | -0/+24 |
| 2024-10-07 | Test for issue 23600 | clubby789 | -1/+0 |
| 2024-10-08 | add knownEngines lldb-dap | kouhe3 | -0/+20 |
| 2024-10-07 | Auto merge of #131354 - matthiaskrgr:rollup-hprnng2, r=matthiaskrgr | bors | -89/+12 |
| 2024-10-07 | Rollup merge of #131353 - GuillaumeGomez:check_rustdoc_test_option, r=jieyouxu | Matthias Krüger | -0/+4 |
| 2024-10-07 | Rollup merge of #131346 - jieyouxu:prune-invalid-directives, r=Zalathar | Matthias Krüger | -21/+3 |
| 2024-10-07 | Rollup merge of #131344 - nnethercote:ref-Lrc, r=compiler-errors | Matthias Krüger | -4/+5 |
| 2024-10-07 | Rollup merge of #131331 - onur-ozkan:131296, r=Kobzol | Matthias Krüger | -64/+0 |
| 2024-10-07 | Add documentation for `runtest::check_rustdoc_test_option` method | Guillaume Gomez | -0/+4 |
| 2024-10-07 | Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner,... | bors | -51/+47 |
| 2024-10-07 | Remove valgrind test suite from opt-dist | 许杰友 Jieyou Xu (Joe) | -1/+0 |
| 2024-10-07 | Remove valgrind test suite and support from compiletest | 许杰友 Jieyou Xu (Joe) | -95/+29 |
| 2024-10-07 | Rename nested_meta to meta_item_inner | codemountains | -8/+7 |
| 2024-10-07 | Prune invalid `ignore-mode-*` directives | 许杰友 Jieyou Xu (Joe) | -21/+3 |
| 2024-10-07 | Avoid another `&Lrc<..>` in a return value. | Nicholas Nethercote | -0/+1 |
| 2024-10-07 | Convert `Option<&Lrc<T>>` return types to `Option<&T>`. | Nicholas Nethercote | -4/+4 |
| 2024-10-06 | Use external stack in borrowck DFS | Chayim Refael Friedman | -58/+67 |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -1/+1 |
| 2024-10-07 | fix: Do not consider mutable usage of deref to `*mut T` as deref_mut | Shoyu Vanilla | -1/+37 |
| 2024-10-06 | disallow `asm!` in `#[naked]` functions | Folkert de Vries | -2/+2 |
| 2024-10-06 | implement `naked_asm` macro | Folkert | -2/+2 |
| 2024-10-06 | Revert "Rollup merge of #129584 - lolbinarycat:old-upstream-warning, r=albert... | onur-ozkan | -34/+0 |
| 2024-10-06 | Revert "Auto merge of #130121 - lolbinarycat:bootstrap-warn-old-upstream-work... | onur-ozkan | -46/+16 |
| 2024-10-06 | Rename NestedMetaItem to MetaItemInner | codemountains | -47/+44 |
| 2024-10-06 | Rollup merge of #129392 - compiler-errors:raw-ref-op-doesnt-diverge-but-more,... | Matthias Krüger | -2/+49 |
| 2024-10-06 | Auto merge of #3936 - YohDeadfall:rust-analyzer-conf, r=RalfJung | bors | -39/+87 |
| 2024-10-06 | tweak the hint | Ralf Jung | -8/+3 |
| 2024-10-06 | Auto merge of #130540 - veera-sivarajan:fix-87525, r=estebank | bors | -6/+12 |
| 2024-10-05 | lsp: fix completion_item something_to_resolve not being a latch to true | Jake | -7/+7 |
| 2024-10-05 | Fix up tests | Michael Goulet | -2/+49 |
| 2024-10-05 | Fix `prettify_macro_expansion()` when the node isn't the whole file | Chayim Refael Friedman | -1/+34 |
| 2024-10-05 | Stabilize `std::io::ErrorKind::QuotaExceeded` | Pavel Grigorenko | -1/+1 |
| 2024-10-05 | Include description in label details when detail field is marked for resolution | Max | -2/+2 |
| 2024-10-05 | Added rust-analyzer instructions for Helix | Yoh Deadfall | -38/+91 |
| 2024-10-05 | avoid pthread_attr_t in tests | Ralf Jung | -18/+24 |
| 2024-10-05 | Fix IDE layer not correctly resolving opt-in extern crates | Lukas Wirth | -7/+18 |
| 2024-10-05 | Add excluded extern-prelude IDE resolution test | Lukas Wirth | -3/+9 |
| 2024-10-05 | Turn ImportSource into a struct | Lukas Wirth | -46/+54 |
| 2024-10-05 | Remove ImportSource::ExternCrate as the fixed point loop can't affect it | Lukas Wirth | -138/+102 |
| 2024-10-05 | Add a Lint for Pointer to Integer Transmutes in Consts | Veera | -6/+12 |
| 2024-10-05 | Rollup merge of #131286 - RalfJung:miri-sync, r=RalfJung | Matthias Krüger | -402/+1293 |
| 2024-10-05 | Rollup merge of #131256 - RalfJung:f16-f128-const, r=ibraheemdev | Matthias Krüger | -4/+4 |
| 2024-10-05 | Auto merge of #3940 - rust-lang:refutable_slice, r=RalfJung | bors | -33/+34 |
| 2024-10-05 | Auto merge of #3943 - RalfJung:pthread-mutex-reentrant, r=RalfJung | bors | -15/+51 |
| 2024-10-05 | pthread mutex: better error in reentrant-locking-UB, also test PTHREAD_MUTEX_... | Ralf Jung | -15/+51 |
| 2024-10-05 | move f16/f128 const fn under f16/f128 feature gate | Ralf Jung | -4/+4 |
| 2024-10-05 | Auto merge of #129244 - cjgillot:opaque-hir, r=compiler-errors | bors | -39/+14 |