| Age | Commit message (Expand) | Author | Lines |
| 2020-03-08 | Rollup merge of #69646 - RalfJung:layout-visitor, r=eddyb | Mazdak Farrokhzad | -1/+1 |
| 2020-03-06 | 'fieldless enums' is not what I meant -- it's empty/uninhabited enums, really | Ralf Jung | -1/+1 |
| 2020-03-06 | fix various typos | Matthias Krüger | -8/+8 |
| 2020-03-02 | Auto merge of #69257 - RalfJung:layout-visitor, r=eddyb | bors | -1/+19 |
| 2020-03-01 | Rollup merge of #69549 - mati865:mingw, r=kennytm | Yuki Okushi | -0/+2 |
| 2020-02-28 | Improve MinGW detection when cross compiling | Mateusz Mikuła | -0/+2 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -3/+3 |
| 2020-02-26 | adjust LayoutDetails comments | Ralf Jung | -7/+7 |
| 2020-02-18 | doc comments for layout components | Ralf Jung | -1/+19 |
| 2020-02-18 | Fix typo | Jonas Schievink | -1/+1 |
| 2020-02-17 | Don't eliminate frame pointers on thumb targets | Jonas Schievink | -0/+3 |
| 2020-02-12 | Properly use the darwin archive format on Apple targets | Anthony Ramine | -1/+1 |
| 2020-02-11 | Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC | Dylan DPC | -1/+0 |
| 2020-02-08 | Auto merge of #68452 - msizanoen1:riscv-abi, r=nagisa,eddyb | bors | -15/+330 |
| 2020-02-08 | rustc_target: treat enum variants like union members, in call ABIs. | Eduard-Mihai Burtescu | -9/+43 |
| 2020-02-08 | rustc_target: switch homogeneous_aggregate to returning Result. | Eduard-Mihai Burtescu | -67/+86 |
| 2020-02-07 | Remove unused feature gate from librustc_target | bjorn3 | -1/+0 |
| 2020-02-04 | Implement proper C ABI lowering for RISC-V | msizanoen1 | -15/+330 |
| 2020-01-31 | Drop cfg(bootstrap) code | Mark Rousskov | -1/+0 |
| 2020-01-28 | Set lld flavor for MSVC to link.exe | John Kåre Alsaker | -2/+5 |
| 2020-01-22 | Rollup merge of #68361 - t6:patch-freebsd-lld-i386, r=alexcrichton | Tyler Mandry | -1/+3 |
| 2020-01-20 | Merge branch 'master' into bare-metal-cortex-a | Jorge Aparicio | -1/+1 |
| 2020-01-19 | Add -Wl,-znotext to default linker flags to link with lld 9 on FreeBSD 13.0-C... | Tobias Kortkamp | -1/+3 |
| 2020-01-18 | slice_patterns: remove internal uses of gate | Mazdak Farrokhzad | -1/+1 |
| 2020-01-15 | add bare metal ARM Cortex-A targets to rustc | Jorge Aparicio | -0/+87 |
| 2020-01-13 | Auto merge of #67900 - nikic:prepare-llvm-10, r=nagisa | bors | -44/+105 |
| 2020-01-10 | Allow specifying LLVM args in target specifications | Jethro Beekman | -0/+6 |
| 2020-01-07 | Update data layouts to include new X86 address spaces | Nikita Popov | -44/+105 |
| 2020-01-05 | Add backticks to various diagnostics | varkor | -1/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -2/+2 |
| 2019-12-30 | Make things build again | Vadim Petrochenkov | -1/+1 |
| 2019-12-25 | tidy: change msdn links to newer locations | Lzu Tao | -2/+2 |
| 2019-12-22 | Format the world | Mark Rousskov | -1076/+984 |
| 2019-12-15 | Rollup merge of #67255 - tuxillo:remove-i686-unknown-dragonfly, r=alexcrichton | Mazdak Farrokhzad | -24/+0 |
| 2019-12-14 | Auto merge of #67084 - Pagten:feature/print-msg-from-elf-entrypoint, r=Amanieu | bors | -1/+1 |
| 2019-12-12 | Remove i686-unknown-dragonfly target | Antonio Huete Jimenez | -24/+0 |
| 2019-12-11 | Rollup merge of #67015 - osa1:issue66971, r=wesleywiser | Mazdak Farrokhzad | -0/+8 |
| 2019-12-06 | const-prop: Restrict scalar pair propagation | Ömer Sinan Ağacan | -0/+8 |
| 2019-12-06 | Rename to `then_some` and `then` | varkor | -5/+5 |
| 2019-12-06 | Use `to_option` in various places | varkor | -37/+6 |
| 2019-12-05 | Processed review comments | Pieter Agten | -1/+0 |
| 2019-12-05 | Auto merge of #66520 - alexcrichton:disable-gdb-wasm, r=eddyb | bors | -0/+3 |
| 2019-12-04 | Disable gdb pretty printer global section on wasm targets | Alex Crichton | -0/+3 |
| 2019-12-04 | Create a separate entry point for the ELF file, instead of using the SGX entr... | Pieter Agten | -1/+2 |
| 2019-12-04 | Auto merge of #65947 - eddyb:fn-abi, r=oli-obk,nagisa | bors | -0/+5 |
| 2019-12-03 | rustc_target: add abi::call::Conv::Rust distinct from Conv::C. | Eduard-Mihai Burtescu | -0/+5 |
| 2019-12-03 | Change linker for x86_64-fortanix-unknown-sgx to rust-lld | Parth Sane | -27/+31 |
| 2019-11-29 | Auto merge of #66645 - RalfJung:dereferenceable, r=pnkfelix | bors | -0/+2 |
| 2019-11-27 | Rollup merge of #66798 - bwignall:typo, r=varkor | Tyler Mandry | -1/+1 |
| 2019-11-26 | Fix spelling typos | Brian Wignall | -1/+1 |