| Age | Commit message (Expand) | Author | Lines |
| 2017-08-18 | Auto merge of #43901 - GuillaumeGomez:unsized-union-field, r=petrochenkov | bors | -10/+91 |
| 2017-08-18 | Handle structs, unions and enums unsized field/variant separately | Guillaume Gomez | -13/+64 |
| 2017-08-18 | Auto merge of #43904 - topecongiro:libsyntax/parse-attr, r=petrochenkov | bors | -6/+4 |
| 2017-08-18 | Auto merge of #43900 - TobiasSchaffner:net_out_of_io, r=alexcrichton | bors | -59/+62 |
| 2017-08-18 | Auto merge of #43897 - lu-zero:master, r=alexcrichton | bors | -0/+90 |
| 2017-08-18 | Auto merge of #43832 - huntiep:compiler-desugaring-enum, r=nikomatsakis | bors | -11/+48 |
| 2017-08-17 | Rollup merge of #43930 - pravic:es5-revert-shorthand, r=frewsxcv | Corey Farwell | -4/+4 |
| 2017-08-17 | Rollup merge of #43928 - anthonyclays:anthonyclays-refcell-docfix, r=QuietMis... | Corey Farwell | -1/+1 |
| 2017-08-17 | Rollup merge of #43920 - michael-zapata:cleanup/mir, r=arielb1 | Corey Farwell | -6/+4 |
| 2017-08-17 | Rollup merge of #43916 - integer32llc:cargo-docs-redirect, r=alexcrichton | Corey Farwell | -1/+46 |
| 2017-08-17 | Rollup merge of #43915 - adrian5:patch-1, r=sfackler | Corey Farwell | -1/+1 |
| 2017-08-17 | Rollup merge of #43914 - steveklabnik:update-books, r=QuietMisdreavus | Corey Farwell | -0/+0 |
| 2017-08-17 | Rollup merge of #43912 - Songbird0:e0106_field_lifetimes, r=GuillaumeGomez | Corey Farwell | -0/+4 |
| 2017-08-17 | Rollup merge of #43905 - partim:master, r=steveklabnik | Corey Farwell | -1/+8 |
| 2017-08-17 | Rollup merge of #43891 - Fourchaux:master, r=steveklabnik | Corey Farwell | -59/+59 |
| 2017-08-17 | Auto merge of #43902 - michaelwoerister:fix-mir-passes-promoted, r=arielb1 | bors | -0/+8 |
| 2017-08-17 | Fix ES5 regression with shorthand names. | pravic | -4/+4 |
| 2017-08-17 | Fixed typo in RefCell::get_mut | Anthony Clays | -1/+1 |
| 2017-08-17 | refactor(mir): remove unused argument | Michael Zapata | -6/+4 |
| 2017-08-17 | Auto merge of #43878 - kennytm:fix-43869-put-impl-trait-out-of-the-loop, r=al... | bors | -6/+67 |
| 2017-08-17 | Auto merge of #43867 - GuillaumeGomez:useless-help, r=nikomatsakis | bors | -2/+1 |
| 2017-08-16 | Use direct references to CompilerDesugaringKind | Hunter Praska | -19/+12 |
| 2017-08-16 | Auto merge of #43864 - GuillaumeGomez:static-method-invalid-use, r=eddyb | bors | -0/+5 |
| 2017-08-17 | added whitespace | Anthony Defranceschi | -2/+2 |
| 2017-08-16 | Implement a temp redirect for cargo docs | Carol (Nichols || Goulding) | -1/+46 |
| 2017-08-17 | Fix typo in doc | adrian5 | -1/+1 |
| 2017-08-16 | Auto merge of #43838 - eddyb:stable-rvalue-promotion, r=arielb1 | bors | -98/+87 |
| 2017-08-16 | E0106: field lifetimes | Anthony Defranceschi | -0/+4 |
| 2017-08-16 | Update the books for next release | steveklabnik | -0/+0 |
| 2017-08-16 | Stabilize rvalue promotion to 'static. | Eduard-Mihai Burtescu | -98/+87 |
| 2017-08-16 | Auto merge of #43108 - pnkfelix:mir-borrowck3c, r=arielb1 | bors | -1098/+2940 |
| 2017-08-16 | Document that std::hash::Hasher::finish() does not reset the hasher. | Martin Hoffmann | -1/+8 |
| 2017-08-16 | Eat open paren when parsing list | Seiichi Uchida | -6/+4 |
| 2017-08-16 | Moved mir-borrowck pass down to where comments say it should be. | Felix S. Klock II | -1/+9 |
| 2017-08-16 | Address review comment: `StatementKind::StorageDead` has an effect (running d... | Felix S. Klock II | -2/+10 |
| 2017-08-16 | Cleanup: Every `BitDenotation` is a `DataflowOperator`, so build that in. | Felix S. Klock II | -21/+11 |
| 2017-08-16 | Added some documentation for the `struct BlockSets` in `rustc_mir::dataflow`. | Felix S. Klock II | -0/+19 |
| 2017-08-16 | MIR based borrow check (opt-in). | Felix S. Klock II | -4/+1422 |
| 2017-08-16 | Factored `MoveData` construction code into `builder` submodule. | Felix S. Klock II | -313/+334 |
| 2017-08-16 | Move `DataFlowState::{each_bit,interpret_set}` method definitions to parent m... | Felix S. Klock II | -50/+56 |
| 2017-08-16 | remove now unnecessary constraint on BitDenotation for `fn do_dataflow`. | Felix S. Klock II | -2/+1 |
| 2017-08-16 | Migrated some code out of `dataflow::drop_flag_effects` and into its parent m... | Felix S. Klock II | -74/+71 |
| 2017-08-16 | Added dataflow analysis for `Borrows`. | Felix S. Klock II | -1/+187 |
| 2017-08-16 | Refactor `trait BitDenotation` to take `Location` instead of `BasicBlock`/`us... | Felix S. Klock II | -40/+29 |
| 2017-08-16 | Move borrowck error msg construction to module in `rustc_mir` (for later reus... | Felix S. Klock II | -599/+800 |
| 2017-08-16 | Run MIR passes on promoted temporaries again. | Michael Woerister | -0/+8 |
| 2017-08-16 | Auto merge of #43850 - GuillaumeGomez:unused-variable-lint, r=arielb1 | bors | -3/+19 |
| 2017-08-16 | Add a note to unused variables | Guillaume Gomez | -3/+19 |
| 2017-08-16 | udpdate error message for unsized union field | Guillaume Gomez | -1/+31 |
| 2017-08-16 | Refactoring: move net specific fd imps to net | Tobias Schaffner | -59/+62 |