| Age | Commit message (Expand) | Author | Lines |
| 2020-03-21 | Rollup merge of #69965 - mark-i-m:codegen-utils, r=eddyb | Mazdak Farrokhzad | -24/+76 |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -3/+3 |
| 2020-03-20 | Rollup merge of #69935 - davidtwco:issue-69925, r=eddyb | Yuki Okushi | -6/+11 |
| 2020-03-19 | Refactorings to begin getting rid of rustc_codegen_utils | Mark Mansi | -24/+76 |
| 2020-03-18 | Rollup merge of #69920 - Centril:hir-cleanup, r=Zoxc | Mazdak Farrokhzad | -22/+22 |
| 2020-03-17 | Auto merge of #69519 - 12101111:remove-proc-macro-check, r=nagisa | bors | -5/+6 |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -22/+22 |
| 2020-03-15 | More Method->Fn renaming | Mark Mansi | -1/+1 |
| 2020-03-14 | Update `krate_attrs` and `get_module` | John Kåre Alsaker | -2/+2 |
| 2020-03-13 | Auto merge of #67502 - Mark-Simulacrum:opt-catch, r=Mark-Simulacrum | bors | -10/+18 |
| 2020-03-14 | Rollup merge of #69954 - RalfJung:panic_if-assert, r=Centril,eddyb | Yuki Okushi | -13/+13 |
| 2020-03-13 | adjust enum naming | Ralf Jung | -12/+12 |
| 2020-03-12 | rename panic_if_ intrinsics to assert_ | Ralf Jung | -4/+4 |
| 2020-03-12 | Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbini | Mazdak Farrokhzad | -2/+2 |
| 2020-03-12 | codegen/mir: support polymorphic `InstanceDef`s | David Wood | -6/+11 |
| 2020-03-11 | Rollup merge of #69850 - RalfJung:panic-bounds-check, r=eddyb | Mazdak Farrokhzad | -1/+5 |
| 2020-03-11 | Rollup merge of #66059 - RalfJung:panic-on-non-zero, r=eddyb | Mazdak Farrokhzad | -35/+92 |
| 2020-03-10 | rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org | Santiago Pastorino | -1/+1 |
| 2020-03-10 | Rename rustc-guide to rustc-dev-guide | Santiago Pastorino | -2/+2 |
| 2020-03-10 | Rollup merge of #69714 - spastorino:place-ref-lifetime, r=oli-obk | Mazdak Farrokhzad | -5/+5 |
| 2020-03-09 | Improve readability | Ralf Jung | -2/+2 |
| 2020-03-09 | panic_bounds_check: use caller_location, like PanicFnLangItem | Ralf Jung | -1/+5 |
| 2020-03-07 | Rollup merge of #69787 - spastorino:use-local-directly-its-copy, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2020-03-06 | mir::Local is Copy we can pass it by value in these cases | Santiago Pastorino | -1/+1 |
| 2020-03-06 | fix various typos | Matthias Krüger | -2/+2 |
| 2020-03-05 | Link to libgcc dynamically on windows-gnu when using dylib crates | Amanieu d'Antras | -0/+14 |
| 2020-03-05 | Remove eh_unwind_resume lang item | Amanieu d'Antras | -10/+4 |
| 2020-03-04 | PlaceRef<'a, 'tcx> -> PlaceRef<'tcx> | Santiago Pastorino | -5/+5 |
| 2020-03-04 | Don't use "if let" bindings to only check a value and not actually bind anyth... | Matthias Krüger | -1/+1 |
| 2020-03-03 | Rollup merge of #69650 - matthiaskrgr:clnp, r=varkor | Dylan DPC | -1/+1 |
| 2020-03-03 | Make PlaceRef lifetimes of monomorphized_place_ty be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-03 | Make PlaceRef lifetimes of codegen_place be both 'tcx | Santiago Pastorino | -3/+3 |
| 2020-03-03 | Improve linking of crates with circular dependencies | Tomasz Miąsko | -7/+15 |
| 2020-03-03 | Run format. | 12101111 | -1/+2 |
| 2020-03-03 | Don't use static crt by default when build proc-macro. | 12101111 | -5/+5 |
| 2020-03-02 | Make PlaceRef lifetimes of LocalAnalyzer::process_place be both 'tcx | Santiago Pastorino | -1/+1 |
| 2020-03-03 | Use .nth(x) instead of .skip(x).next() on iterators. | Matthias Krüger | -1/+1 |
| 2020-03-01 | Rollup merge of #69569 - matthiaskrgr:nonminimal_bool, r=mark-Simulacrum | Dylan DPC | -2/+2 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -5/+5 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -1/+1 |
| 2020-02-29 | simplify boolean expressions | Matthias Krüger | -2/+2 |
| 2020-02-29 | move panic intrinsic codegen to helper function | Ralf Jung | -66/+92 |
| 2020-02-29 | fmt | Ralf Jung | -6/+10 |
| 2020-02-29 | make it even more conservative, and note some FIXMEs | Ralf Jung | -0/+2 |
| 2020-02-29 | mem::zeroed/uninit: panic on types that do not permit zero-initialization | Ralf Jung | -3/+28 |
| 2020-02-28 | simplify condition in start_executing_work() | Matthias Krüger | -5/+5 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -8/+8 |
| 2020-02-28 | Rollup merge of #69529 - matthiaskrgr:clippy_identity_conversion, r=Mark-Simu... | Dylan DPC | -3/+2 |
| 2020-02-28 | Rollup merge of #69379 - jumbatm:llvm-sigsegv, r=pnkfelix | Dylan DPC | -2/+2 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -3/+2 |