| Age | Commit message (Expand) | Author | Lines |
| 2023-10-14 | Add `Config::hash_untracked_state` callback | Alex Macleod | -0/+1 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -3/+4 |
| 2023-10-13 | Remove unneeded `pub`s. | Nicholas Nethercote | -7/+7 |
| 2023-10-13 | Remove pretty-printing traits. | Nicholas Nethercote | -1/+0 |
| 2023-10-13 | Merge `print_*` functions. | Nicholas Nethercote | -2/+2 |
| 2023-10-13 | Simplify support traits. | Nicholas Nethercote | -2/+3 |
| 2023-10-08 | rustdoc: remove rust logo from non-Rust crates | Michael Howell | -0/+3 |
| 2023-10-06 | rustc_driver: avoid fallible conversions | Tamir Duberstein | -12/+15 |
| 2023-10-06 | compiler: always use var_os("RUST_BACKTRACE") | Tamir Duberstein | -2/+2 |
| 2023-09-19 | Auto merge of #115627 - compiler-errors:icedump-no-std, r=m-ou-se | bors | -26/+54 |
| 2023-09-13 | Auto merge of #115735 - bjorn3:better_list_crate_metadata, r=wesleywiser | bors | -2/+4 |
| 2023-09-10 | Show lib features in -Zls and allow configuring which things are shown | bjorn3 | -2/+4 |
| 2023-09-10 | Remove EarlyErrorHandler argument from after_analysis callback | bjorn3 | -2/+1 |
| 2023-09-10 | Rename after_parsing callback to after_crate_root_parsing | bjorn3 | -3/+4 |
| 2023-09-08 | Add missing Debuginfo to PDB debug file on windows. | Florian Schmiderer | -0/+1 |
| 2023-09-07 | Make ICE backtrace actually match the panic handler | Michael Goulet | -2/+19 |
| 2023-09-07 | Don't modify libstd to dump rustc ICEs | Michael Goulet | -26/+37 |
| 2023-08-30 | Rollup merge of #113565 - workingjubilee:better-signal-handler-message, r=pnk... | Matthias Krüger | -66/+9 |
| 2023-08-29 | Auto merge of #114114 - keith:ks/always-add-lc_build_version-for-metadata-obj... | bors | -5/+3 |
| 2023-08-24 | Move extra_compiler_flags() to rustc_session | Martin Nordholts | -48/+1 |
| 2023-08-21 | Always add LC_BUILD_VERSION for metadata object files | Keith Smiley | -5/+3 |
| 2023-08-09 | rustc: Move `crate_types` from `Session` to `GlobalCtxt` | Vadim Petrochenkov | -2/+0 |
| 2023-08-07 | rustc_interface: Dismantle `register_plugins` query | Vadim Petrochenkov | -10/+6 |
| 2023-08-06 | Auto merge of #114476 - Urgau:missing-dep-file-112898, r=oli-obk | bors | -0/+4 |
| 2023-08-04 | Fix missing dependency file with -Zunpretty | Urgau | -0/+4 |
| 2023-07-31 | Replace the many arguments of `EmitterWriter::stderr` with builder methods | Oli Scherer | -11/+1 |
| 2023-07-25 | Use a builder instead of boolean/option arguments | Oli Scherer | -1/+1 |
| 2023-07-21 | Rollup merge of #113780 - dtolnay:printkindpath, r=b-naber | Matthias Krüger | -22/+45 |
| 2023-07-20 | Create separate match arms for FileNames and CrateNames | David Tolnay | -10/+14 |
| 2023-07-20 | Implement printing to file in codegen_backend.print | David Tolnay | -1/+1 |
| 2023-07-20 | Implement printing to file in print_crate_info | David Tolnay | -17/+38 |
| 2023-07-20 | Store individual output file name with every PrintRequest | David Tolnay | -8/+6 |
| 2023-07-19 | On nightly, dump ICE backtraces to disk | Esteban Küber | -13/+67 |
| 2023-07-19 | Explain SIGSEGV backtrace handler | Jubilee Young | -66/+9 |
| 2023-07-11 | Don't require each rustc_interface tool to opt-in to parallel_rustc support | jyn | -3/+0 |
| 2023-07-10 | Dynamically size sigaltstk in rustc | Jubilee Young | -5/+22 |
| 2023-07-03 | Add a simple markdown parser for formatting `rustc --explain` | Trevor Gross | -15/+54 |
| 2023-06-27 | Provide more context for `rustc +nightly -Zunstable-options` on stable | 许杰友 Jieyou Xu (Joe) | -56/+72 |
| 2023-06-23 | Make sure to include default en-US ftl resources for rustc_error crate | Michael Goulet | -0/+1 |
| 2023-06-22 | Avoid `Lrc<Box<dyn CodegenBackend>>`. | Nicholas Nethercote | -2/+2 |
| 2023-06-21 | Remove Queries::ongoing_codegen. | Nicholas Nethercote | -2/+2 |
| 2023-06-14 | Rollup merge of #112109 - Alexendoo:unsupported-split-debuginfo, r=b-naber | Matthias Krüger | -3/+1 |
| 2023-06-13 | Don't print unsupported split-debuginfo modes with -Zunstable-options | Alex Macleod | -3/+1 |
| 2023-06-12 | Collect VTable stats & add `-Zprint-vtable-sizes` | Maybe Waffle | -0/+7 |
| 2023-06-09 | Auto merge of #111626 - pjhades:output, r=b-naber | bors | -4/+9 |
| 2023-06-07 | Don't `use compile_error as print` | Maybe Waffle | -1/+8 |
| 2023-06-06 | Write to stdout if `-` is given as output file | Jing Peng | -4/+9 |
| 2023-05-29 | Use `Cow` in `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -1/+1 |
| 2023-05-27 | Rollup merge of #109084 - dekrain:fix-panic-arg0-expansion, r=petrochenkov | Matthias Krüger | -3/+10 |
| 2023-05-27 | Fix ICE caused by at-expanding argument 0 instead of removing it early | dekrain | -3/+10 |