| Age | Commit message (Expand) | Author | Lines |
| 2024-12-18 | Auto merge of #134243 - nnethercote:re-export-more-rustc_span, r=jieyouxu | bors | -1/+1 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -1/+1 |
| 2024-12-17 | Rollup merge of #133265 - the8472:extract-if-ranges, r=cuviper | Matthias Krüger | -1/+1 |
| 2024-12-16 | update uses of extract_if in the compiler | The 8472 | -1/+1 |
| 2024-12-16 | rename rustc_attr to rustc_attr_parsing and create rustc_attr_data_structures | Jonathan Dönszelmann | -1/+1 |
| 2024-11-30 | Rollup merge of #132750 - daltenty:daltenty/libs, r=jieyouxu | 许杰友 Jieyou Xu (Joe) | -0/+4 |
| 2024-11-29 | Add a comment | David Tenty | -0/+3 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -2/+2 |
| 2024-11-15 | rustc_metadata: Preprocess search paths for better performance | Piotr Osiewicz | -2/+2 |
| 2024-11-07 | [AIX] handle libunwind native_libs | David Tenty | -0/+1 |
| 2024-11-03 | compiler: Directly use rustc_abi in metadata and middle | Jubilee Young | -9/+13 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -3/+3 |
| 2024-10-01 | Implement boolean lit support in cfg predicates | Urgau | -1/+1 |
| 2024-10-01 | Use `ast::NestedMetaItem` when evaluating cfg predicate | Urgau | -2/+7 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -4/+4 |
| 2024-09-08 | MsvcLinker: allow linking dynamically to Meson and MinGW-style named libraries | L. E. Segovia | -0/+38 |
| 2024-08-27 | linker: Synchronize native library search in rustc and linker | Vadim Petrochenkov | -10/+82 |
| 2024-08-10 | rustc_metadata: make "link {arg,cfg} is unstable" translatable | Pavel Grigorenko | -5/+11 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -2/+2 |
| 2024-05-22 | Rename `FrameworkOnlyWindows` to `RawDylibOnlyWindows` | Tobias Bucher | -1/+1 |
| 2024-04-12 | linker: Remove laziness and caching from native search directory walks | Vadim Petrochenkov | -12/+6 |
| 2024-04-12 | linker: Avoid some allocations in search directory iteration | Vadim Petrochenkov | -4/+4 |
| 2024-03-06 | Rewrite the `untranslatable_diagnostic` lint. | Nicholas Nethercote | -0/+1 |
| 2024-02-25 | remove platform-intrinsics ABI; make SIMD intrinsics be regular intrinsics | Ralf Jung | -1/+1 |
| 2024-01-13 | Auto merge of #119088 - George-lewis:glewis/suggest-upgrading-compiler, r=Nil... | bors | -10/+5 |
| 2024-01-13 | Add check for ui_testing via promoting parameters from `ParseSess` to `Session` | George-lewis | -10/+5 |
| 2024-01-12 | allow system abi to be variadic | beepster4096 | -2/+14 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -43/+49 |
| 2023-11-30 | Enable link-arg link kind inside of #[link] attribute | zetanumbers | -0/+12 |
| 2023-11-17 | rename bound region instantiation | lcnr | -1/+1 |
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -1/+3 |
| 2023-08-09 | rustc: Move `crate_types` from `Session` to `GlobalCtxt` | Vadim Petrochenkov | -6/+11 |
| 2023-07-17 | Do not fetch HIR in native_libs. | Camille GILLOT | -46/+34 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -1/+1 |
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -1/+1 |
| 2023-05-06 | Rollup merge of #109677 - dpaoliello:rawdylib, r=michaelwoerister,wesleywiser | Yuki Okushi | -18/+0 |
| 2023-05-03 | Restrict `From<S>` for `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -1/+1 |
| 2023-04-18 | Stablize raw-dylib, link_ordinal and -Cdlltool | Daniel Paoliello | -18/+0 |
| 2023-03-19 | The name of NativeLib will be presented | yukang | -41/+34 |
| 2023-03-17 | Do not ICE for native_lib without name | yukang | -1/+2 |
| 2023-02-25 | Rollup merge of #107675 - jsgf:link-directives, r=davidtwco | Michael Goulet | -1/+6 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -1/+1 |
| 2023-02-22 | Implement -Zlink-directives=yes/no | Jeremy Fitzhardinge | -1/+6 |
| 2023-02-17 | Replace `mk_foo` calls with `infer_foo` where possible. | Nicholas Nethercote | -1/+1 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -1/+1 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -1/+2 |
| 2023-02-10 | [link] enable packed bundled lib in non stable cases | Daniil Belov | -13/+14 |
| 2023-02-05 | rustc_metadata: remove huge error imports | est31 | -54/+49 |
| 2023-01-30 | Replace some `_ == _ || _ == _`s with `matches!(_, _ | _)`s | Maybe Waffle | -1/+1 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -2/+2 |