| Age | Commit message (Expand) | Author | Lines |
| 2022-09-06 | Fix CI failures on windows and aarch64-linux | Vadim Petrochenkov | -20/+36 |
| 2022-09-06 | change stdlib circular dependencies handling | Daniil Belov | -122/+35 |
| 2022-09-04 | Make `const_eval_select` a real intrinsic | Deadbeef | -2/+1 |
| 2022-09-02 | Auto merge of #97802 - Enselic:add-no_ignore_sigkill-feature, r=joshtriplett | bors | -6/+10 |
| 2022-09-02 | Rollup merge of #100200 - petrochenkov:zgccld2, r=lqd,Mark-Simulacrum | Matthias Krüger | -14/+18 |
| 2022-09-01 | rustc_target: Refactor internal linker flavors slightly | Vadim Petrochenkov | -26/+22 |
| 2022-09-01 | rustc_target: Add a compatibility layer to separate internal and user-facing ... | Vadim Petrochenkov | -1/+2 |
| 2022-09-01 | Auto merge of #100958 - mikebenfield:workaround, r=nikic | bors | -11/+0 |
| 2022-09-01 | Auto merge of #100707 - dzvon:fix-typo, r=davidtwco | bors | -2/+2 |
| 2022-08-31 | Rollup merge of #100753 - LuisCardosoOliveira:translation-migrate-session, r=... | Ralf Jung | -1/+1 |
| 2022-08-31 | Fix a bunch of typo | Dezhi Wu | -2/+2 |
| 2022-08-30 | Rollup merge of #100653 - cuviper:fptoint_sat, r=michaelwoerister,antoyo | Dylan DPC | -155/+3 |
| 2022-08-29 | Rollup merge of #101141 - compiler-errors:get-trait-ref-is-a-misleading-name,... | Matthias Krüger | -11/+7 |
| 2022-08-29 | Rollup merge of #99027 - tmiasko:basic-blocks, r=oli-obk | Matthias Krüger | -7/+7 |
| 2022-08-29 | Simplify get_trait_ref a bit | Michael Goulet | -11/+7 |
| 2022-08-28 | Support `#[unix_sigpipe = "inherit|sig_dfl|sig_ign"]` on `fn main()` | Martin Nordholts | -6/+10 |
| 2022-08-28 | Auto merge of #92845 - Amanieu:std_personality, r=Mark-Simulacrum | bors | -11/+7 |
| 2022-08-28 | Fix handling of rust_eh_personality in reachable_non_generics | Amanieu d'Antras | -11/+7 |
| 2022-08-27 | Auto merge of #100999 - nnethercote:shrink-FnAbi, r=bjorn3 | bors | -27/+23 |
| 2022-08-26 | translations(rustc_session): migrate check_expected_reuse | Luis Cardoso | -1/+1 |
| 2022-08-26 | Replace `Body::basic_blocks()` with field access | Tomasz Miąsko | -7/+7 |
| 2022-08-26 | Move `ArgAbi::pad_i32` into `PassMode::Cast`. | Nicholas Nethercote | -22/+18 |
| 2022-08-26 | Turn `ArgAbi::pad` into a `bool`. | Nicholas Nethercote | -5/+5 |
| 2022-08-26 | Box `CastTarget` within `PassMode`. | Nicholas Nethercote | -6/+6 |
| 2022-08-25 | Code cleaning | Adrian Tombu | -6/+6 |
| 2022-08-25 | Replace spaghetti with a simple errors enum | Adrian Tombu | -59/+16 |
| 2022-08-25 | Start adding enum errors for deserialize_rlink | Adrian Tombu | -7/+61 |
| 2022-08-24 | Remove LLVM ARM bug workaround | Michael Benfield | -11/+0 |
| 2022-08-24 | Rollup merge of #99993 - petrochenkov:linkdated, r=bjorn3 | Matthias Krüger | -18/+18 |
| 2022-08-22 | Refactor part of codegen_call_terminator | Eric Holk | -47/+44 |
| 2022-08-19 | use <[u8]>::escape_ascii instead of core::ascii::escape_default | KaDiWa | -17/+8 |
| 2022-08-19 | Rollup merge of #100208 - RalfJung:dyn-upcast-nop, r=petrochenkov | Dylan DPC | -0/+1 |
| 2022-08-17 | Rollup merge of #100379 - davidtwco:triagebot-diag, r=Mark-Simulacrum | Matthias Krüger | -9/+11 |
| 2022-08-16 | Move the cast_float_to_int fallback code to GCC | Josh Stone | -155/+3 |
| 2022-08-15 | Rollup merge of #100528 - tux3:riscv-bitmanip-features, r=davidtwco | Matthias Krüger | -0/+4 |
| 2022-08-15 | Auto merge of #98393 - michaelwoerister:new-cpp-like-enum-debuginfo, r=wesley... | bors | -50/+6 |
| 2022-08-15 | errors: move translation logic into module | David Wood | -9/+11 |
| 2022-08-14 | feat: Target features for 1st group of RISC-V Bitmanip extensions | tux3 | -0/+4 |
| 2022-08-12 | rustc_target: Update some old naming around self contained linking | Vadim Petrochenkov | -24/+26 |
| 2022-08-12 | Use enum2<_> instead of enum<_> for Cpp-like debuginfo enum type names. | Michael Woerister | -2/+2 |
| 2022-08-12 | debuginfo: Change C++-like encoding for enums. | Michael Woerister | -48/+4 |
| 2022-08-11 | Rollup merge of #99500 - tmandry:fuchsia-flags, r=petrochenkov | Matthias Krüger | -4/+16 |
| 2022-08-10 | Fix flags when using clang as linker for Fuchsia | Tyler Mandry | -4/+16 |
| 2022-08-09 | Add support for link-flavor rust-lld for macOS | Mary | -1/+7 |
| 2022-08-06 | make NOP dyn casts not require anything about the vtable | Ralf Jung | -0/+1 |
| 2022-08-06 | Change implementation of `-Z gcc-ld` and `lld-wrapper` again | Vadim Petrochenkov | -14/+18 |
| 2022-08-05 | Auto merge of #100035 - workingjubilee:merge-functions, r=nikic | bors | -2/+5 |
| 2022-08-05 | Enable function merging when opt is for size | Jubilee Young | -2/+5 |
| 2022-08-04 | Auto merge of #100120 - matthiaskrgr:rollup-g6ycykq, r=matthiaskrgr | bors | -7/+10 |
| 2022-08-03 | Add support for link-flavor rust-lld for iOS, tvOS and watchOS | mary | -7/+10 |