| Age | Commit message (Expand) | Author | Lines |
| 2020-04-21 | Auto merge of #71170 - spastorino:dyn-fnonce-alignment, r=nikomatsakis | bors | -4/+130 |
| 2020-04-20 | tweak comments | Niko Matsakis | -5/+10 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -13/+20 |
| 2020-04-18 | Make Box<dyn FnOnce> respect self alignment | Santiago Pastorino | -3/+124 |
| 2020-04-17 | Auto merge of #71049 - eddyb:const-err, r=oli-obk | bors | -11/+6 |
| 2020-04-16 | mir/interpret: only use `ErrorHandled::Reported` for `ErrorReported`. | Eduard-Mihai Burtescu | -1/+2 |
| 2020-04-16 | Partially revert "Do not ICE in the face of invalid enum discriminant" | Eduard-Mihai Burtescu | -10/+4 |
| 2020-04-16 | Rollup merge of #71179 - matthiaskrgr:cl6ppy, r=Dylan-DPC | Dylan DPC | -60/+49 |
| 2020-04-16 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -60/+49 |
| 2020-04-15 | Do not ICE in the face of invalid enum discriminant | Esteban Küber | -4/+10 |
| 2020-04-15 | Rollup merge of #70891 - lcnr:replace-rvalue_aggregate, r=eddyb | Mazdak Farrokhzad | -9/+15 |
| 2020-04-14 | Rename AssocKind::Method to AssocKind::Fn | Rustin-Liu | -1/+1 |
| 2020-04-13 | unit rvalue: use constant `()` instead of tuple | Bastian Kauschke | -9/+15 |
| 2020-04-09 | Use tri-color search for unconditional recursion lint | Dylan MacKenzie | -135/+111 |
| 2020-04-07 | Further improve comments | Jonas Schievink | -3/+4 |
| 2020-04-07 | Add some more comments | Jonas Schievink | -0/+11 |
| 2020-04-06 | Add some comments and rename variable | Jonas Schievink | -2/+9 |
| 2020-04-06 | Merge redundant match arms | Jonas Schievink | -11/+8 |
| 2020-04-06 | Move closure check upwards | Jonas Schievink | -7/+6 |
| 2020-04-06 | Don't lint for self-recursion when the function can diverge | Jonas Schievink | -92/+114 |
| 2020-04-05 | Stop importing int/float modules in librustc_* | Linus Färnstrand | -3/+0 |
| 2020-04-02 | direct imports for langitem stuff | Mazdak Farrokhzad | -6/+6 |
| 2020-04-02 | use direct import for ErrorReported | Mazdak Farrokhzad | -1/+1 |
| 2020-04-02 | nix rustc_target::abi::* reexport in ty::layout | Mazdak Farrokhzad | -15/+18 |
| 2020-03-31 | Use Place directly in librustc_mir_build, it's Copy | Santiago Pastorino | -63/+55 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -23/+16 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -32/+36 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -95/+95 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-27 | Rollup merge of #70457 - Centril:non-exhaustive-scrutinee-type, r=estebank | Mazdak Farrokhzad | -0/+2 |
| 2020-03-27 | non-exhastive diagnostic: add note re. scrutinee type | Mazdak Farrokhzad | -0/+2 |
| 2020-03-27 | Auto merge of #68404 - Amanieu:llvm-asm, r=estebank | bors | -10/+10 |
| 2020-03-26 | Rollup merge of #70413 - AminArria:match-pattern-incorrect-warning, r=Centril... | Dylan DPC | -8/+41 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -10/+10 |
| 2020-03-26 | Fix incorrect pattern warning "unreachable pattern" | Amin Arria | -8/+41 |
| 2020-03-26 | Rollup merge of #69866 - estebank:guess_head_span, r=eddyb | Mazdak Farrokhzad | -1/+1 |
| 2020-03-25 | Rename `def_span` to `guess_head_span` | Esteban Küber | -1/+1 |
| 2020-03-25 | make Size::from* methods generic in the integer type they accept | Ralf Jung | -3/+3 |
| 2020-03-24 | Rollup merge of #68884 - Zoxc:gen-type, r=nikomatsakis | Mazdak Farrokhzad | -1/+2 |
| 2020-03-24 | Rollup merge of #69981 - oli-obk:const_blocks, r=eddyb | Mazdak Farrokhzad | -30/+4 |
| 2020-03-23 | Address review comments | Oliver Scherer | -2/+2 |
| 2020-03-23 | Make the `type_of` return a generic type for generators | John Kåre Alsaker | -1/+2 |
| 2020-03-23 | Use `DefId`s to identify anon consts when converting from HIR to ty::Const | Oliver Scherer | -0/+1 |
| 2020-03-23 | Evaluate repeat expression lengths as late as possible | Oliver Scherer | -30/+3 |
| 2020-03-23 | Rollup merge of #69968 - eddyb:tupled-closure-captures, r=nikomatsakis | Mazdak Farrokhzad | -9/+7 |
| 2020-03-23 | Rollup merge of #70269 - matthiaskrgr:clippy_closures, r=Dylan-DPC | Mazdak Farrokhzad | -1/+1 |
| 2020-03-22 | remove redundant closures (clippy::redundant_closure) | Matthias Krüger | -1/+1 |
| 2020-03-21 | remove unused unit values (clippy::unused_unit) | Matthias Krüger | -4/+1 |
| 2020-03-21 | make some let-if-bindings more idiomatic (clippy::useless_let_if_seq) | Matthias Krüger | -4/+5 |
| 2020-03-21 | rustc: keep upvars tupled in {Closure,Generator}Substs. | Eduard-Mihai Burtescu | -9/+7 |