| Age | Commit message (Expand) | Author | Lines |
| 2024-01-22 | Do not normalize closure signature when building FnOnce shim | Michael Goulet | -1/+0 |
| 2024-01-19 | Pack the u128 in LitKind::Int | Josh Stone | -1/+1 |
| 2024-01-17 | Auto merge of #119922 - nnethercote:fix-Diag-code-is_lint, r=oli-obk | bors | -2/+2 |
| 2024-01-15 | compiler: Lower fn call arg spans down to MIR | Martin Nordholts | -8/+13 |
| 2024-01-14 | Rework how diagnostic lints are stored. | Nicholas Nethercote | -2/+2 |
| 2024-01-13 | Auto merge of #119088 - George-lewis:glewis/suggest-upgrading-compiler, r=Nil... | bors | -6/+6 |
| 2024-01-13 | Auto merge of #119409 - Kobzol:rustc-codegen-ssa-query-instability, r=Nilstrieb | bors | -11/+30 |
| 2024-01-13 | Add check for ui_testing via promoting parameters from `ParseSess` to `Session` | George-lewis | -6/+6 |
| 2024-01-13 | rustc_codegen_ssa: Enforce `rustc::potential_query_instability` lint | Jakub Beránek | -11/+30 |
| 2024-01-12 | Revert "Auto merge of #113923 - DianQK:restore-no-builtins-lto, r=pnkfelix" | DianQK | -22/+61 |
| 2024-01-12 | Revert "Auto merge of #118568 - DianQK:no-builtins-symbols, r=pnkfelix" | DianQK | -15/+3 |
| 2024-01-11 | Change how `force-warn` lint diagnostics are recorded. | Nicholas Nethercote | -7/+2 |
| 2024-01-10 | Rename consuming chaining methods on `DiagnosticBuilder`. | Nicholas Nethercote | -31/+30 |
| 2024-01-10 | Rename `{create,emit}_warning` as `{create,emit}_warn`. | Nicholas Nethercote | -10/+10 |
| 2024-01-10 | Rename `struct_span_err!` as `struct_span_code_err!`. | Nicholas Nethercote | -13/+14 |
| 2024-01-09 | Rollup merge of #118903 - azhogin:azhogin/skip_second_stmt_debuginfo.rs, r=pe... | Matthias Krüger | -11/+6 |
| 2024-01-08 | Improved support of collapse_debuginfo attribute for macros. | Andrew Zhogin | -11/+6 |
| 2024-01-08 | Use chaining for `DiagnosticBuilder` construction and `emit`. | Nicholas Nethercote | -4/+4 |
| 2024-01-08 | Use chaining in `DiagnosticBuilder` construction. | Nicholas Nethercote | -124/+56 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -3/+3 |
| 2024-01-05 | Auto merge of #119192 - michaelwoerister:mcp533-push, r=cjgillot | bors | -9/+9 |
| 2024-01-05 | Auto merge of #119621 - compiler-errors:rollup-5mxtvuk, r=compiler-errors | bors | -31/+31 |
| 2024-01-05 | Rollup merge of #119538 - nnethercote:cleanup-errors-5, r=compiler-errors | Michael Goulet | -31/+31 |
| 2024-01-05 | Auto merge of #118991 - nikic:scalar-pair, r=nagisa | bors | -21/+13 |
| 2024-01-04 | Make iteration order of supported_target_features query stable | Michael Woerister | -2/+2 |
| 2024-01-04 | Make iteration order of wasm_import_module_map query stable | Michael Woerister | -3/+3 |
| 2024-01-04 | Make iteration order of upstream_monomorphizations query stable | Michael Woerister | -4/+4 |
| 2024-01-04 | Rollup merge of #118521 - dpaoliello:asan, r=wesleywiser | Matthias Krüger | -14/+30 |
| 2024-01-04 | Remove `is_lint` field from `Level::Error`. | Nicholas Nethercote | -1/+1 |
| 2024-01-04 | Avoid some `rustc_errors::` qualifiers. | Nicholas Nethercote | -3/+3 |
| 2024-01-03 | Enable address sanitizer for MSVC targets using INFERASANLIBS linker flag | Daniel Paoliello | -14/+30 |
| 2024-01-03 | Rollup merge of #119444 - compiler-errors:closure-or-coroutine, r=oli-obk | León Orell Valerian Liehr | -3/+3 |
| 2024-01-03 | Rename some `Diagnostic` setters. | Nicholas Nethercote | -28/+28 |
| 2024-01-02 | Address review comments | Nikita Popov | -7/+5 |
| 2023-12-30 | Update to bitflags 2 in the compiler | Nilstrieb | -0/+1 |
| 2023-12-30 | is_coroutine -> is_coroutine_or_closure | Michael Goulet | -3/+3 |
| 2023-12-30 | Auto merge of #118705 - WaffleLapkin:codegen-atomic-exhange-untuple, r=cjgillot | bors | -4/+2 |
| 2023-12-28 | Change `rustc_codegen_ssa`'s `atomic_cmpxchg` interface to return a pair of v... | Bernd Schmidt | -4/+2 |
| 2023-12-26 | Auto merge of #119258 - compiler-errors:closure-kind, r=eholk | bors | -1/+1 |
| 2023-12-25 | Only regular coroutines have movability | Michael Goulet | -1/+1 |
| 2023-12-24 | Remove more `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -10/+11 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -111/+111 |
| 2023-12-22 | Rollup merge of #119198 - compiler-errors:desugaring, r=eholk | Michael Goulet | -10/+26 |
| 2023-12-23 | Remove all uses of `DiagnosticBuilder::forget_guarantee()`. | Nicholas Nethercote | -7/+7 |
| 2023-12-23 | Improve some names. | Nicholas Nethercote | -4/+4 |
| 2023-12-22 | Split coroutine desugaring kind from source | Michael Goulet | -10/+26 |
| 2023-12-22 | Auto merge of #119097 - nnethercote:fix-EmissionGuarantee, r=compiler-errors | bors | -47/+48 |
| 2023-12-21 | Auto merge of #119056 - cjgillot:codegen-overalign, r=wesleywiser | bors | -1/+1 |
| 2023-12-20 | Rollup merge of #118973 - Enselic:fix-IncorrectCguReuseType, r=michaelwoerister | Matthias Krüger | -2/+2 |
| 2023-12-19 | rustc_codegen_ssa: Don't let `IncorrectCguReuseType` errors get lost | Martin Nordholts | -2/+2 |