| Age | Commit message (Expand) | Author | Lines |
| 2016-05-24 | test: Use `set sysroot` for more NDK compatibility | Alex Crichton | -5/+6 |
| 2016-05-24 | std: Stabilize APIs for the 1.10 release | Alex Crichton | -494/+567 |
| 2016-05-24 | Satisfy tidy | Jonathan Turner | -1/+10 |
| 2016-05-24 | Removed `type Bit` and `fn interpret` items from `trait BitDenotation`. | Felix S. Klock II | -62/+21 |
| 2016-05-24 | Back to single line between errors. Add header space to secondary files | Jonathan Turner | -4/+26 |
| 2016-05-24 | Replaced use of `interpret` method in `mir::dataflow::graphviz` with a client... | Felix S. Klock II | -76/+94 |
| 2016-05-24 | syntax: Make codemap::get_filemap() return an Option | Kamal Marhubi | -3/+4 |
| 2016-05-24 | move the `tcx` and `mir` parts of associated `Ctxt` onto each `BitDenotation`... | Felix S. Klock II | -79/+77 |
| 2016-05-24 | syntax/hir: give loop labels a span | Georg Brandl | -83/+99 |
| 2016-05-24 | Add comments and fix a nit | Jeffrey Seyfried | -1/+9 |
| 2016-05-24 | Move issue-26480 cfail to ui test. Fix #33763 | Jonathan Turner | -31/+63 |
| 2016-05-24 | Moved the four impls of `BitDenotation` to their own module, `mod impls`. | Felix S. Klock II | -569/+588 |
| 2016-05-24 | Rollup merge of #33810 - tmr232:patch-1, r=Manishearth | Guillaume Gomez | -1/+1 |
| 2016-05-24 | Rollup merge of #33797 - alex-ozdemir:rustdoc, r=GuillaumeGomez | Guillaume Gomez | -0/+1 |
| 2016-05-24 | Rollup merge of #33781 - GuillaumeGomez:err-codes, r=steveklabnik | Guillaume Gomez | -0/+228 |
| 2016-05-24 | Rollup merge of #33779 - GuillaumeGomez:repr-simd, r=steveklabnik | Guillaume Gomez | -12/+12 |
| 2016-05-24 | Rollup merge of #33759 - aakloxu:patch-2, r=steveklabnik | Guillaume Gomez | -2/+0 |
| 2016-05-24 | Rollup merge of #33692 - nham:fix_E0207, r=GuillaumeGomez | Guillaume Gomez | -15/+111 |
| 2016-05-24 | `mir::dataflow::sanity_check`: extract an `fn each_block` to simplify present... | Felix S. Klock II | -76/+86 |
| 2016-05-24 | Fix comment within sanity_check. | Felix S. Klock II | -3/+4 |
| 2016-05-24 | bug fix to `borrowck::indexed_set`: wanted bit-count not byte-count. | Felix S. Klock II | -1/+1 |
| 2016-05-24 | Avoid iterating two times over the list of LHSes. | Leo Testard | -5/+4 |
| 2016-05-24 | Make sure that macros that didn't pass LHS checking are not expanded. | Leo Testard | -42/+93 |
| 2016-05-24 | Fix asm-misplaced-option on ARM/AArch64 | Mátyás Mustoha | -0/+2 |
| 2016-05-23 | rustbuild: Add support for --enable-local-rust | Alex Crichton | -4/+8 |
| 2016-05-24 | panic.rs: fix docs (recover -> catch_unwind) | diwic | -35/+35 |
| 2016-05-23 | Auto merge of #33787 - cuviper:local-rebuild, r=alexcrichton | bors | -2/+12 |
| 2016-05-24 | format with [rustfmt_skip] and addressed a few comments | Srinivas Reddy Thatiparthy | -80/+19 |
| 2016-05-24 | Fix invalid background color in stability elements | Guillaume Gomez | -0/+4 |
| 2016-05-23 | Auto merge of #33664 - huonw:abs_sub, r=alexcrichton | bors | -46/+24 |
| 2016-05-23 | Fix #33819 and update ui test | Jonathan Turner | -1/+16 |
| 2016-05-23 | "the trait `Hash`" => "the `Hash` trait" | Carol (Nichols || Goulding) | -2/+2 |
| 2016-05-23 | Complete `PartialOrd`'s example so it passes make check-docs | Carol (Nichols || Goulding) | -0/+21 |
| 2016-05-23 | Improve the long explanation of E0207. | Nick Hamann | -15/+111 |
| 2016-05-23 | Move all `Default` docs from module to trait | Carol (Nichols || Goulding) | -73/+42 |
| 2016-05-23 | Prefer `ClassName` over `Self` in example trait implementations | Carol (Nichols || Goulding) | -9/+9 |
| 2016-05-23 | Use `()` when referring to functions | Carol (Nichols || Goulding) | -4/+4 |
| 2016-05-23 | Add some newlines in some code examples | Carol (Nichols || Goulding) | -0/+2 |
| 2016-05-23 | "non equal" => "not equal"; consistent with the surrounding text | Carol (Nichols || Goulding) | -1/+1 |
| 2016-05-24 | Remove unused field and argument | Seo Sanghyeon | -7/+2 |
| 2016-05-23 | "more than 32" => "more than 32 elements" | Carol (Nichols || Goulding) | -2/+2 |
| 2016-05-23 | Emphasize semantic differences of Copy/Clone rather than impl | Carol (Nichols || Goulding) | -3/+4 |
| 2016-05-23 | Shorten, yet clarify, initial summary sentences | Carol (Nichols || Goulding) | -2/+6 |
| 2016-05-23 | Update error format for readability. Add spacing header<->snippet and another... | Jonathan Turner | -1/+8 |
| 2016-05-23 | bootstrap: rename Config.rebuild to .local_rebuild | Josh Stone | -4/+4 |
| 2016-05-23 | revised mir-dataflow so bitvectors carry a phantom type for their index domain. | Felix S. Klock II | -180/+272 |
| 2016-05-24 | Do not inject test harness for --cfg test | Seo Sanghyeon | -6/+24 |
| 2016-05-23 | Auto merge of #33735 - jseyfried:concat_idents_in_ty_positions, r=nrc | bors | -21/+38 |
| 2016-05-23 | trans::collector: Remove some redundant calls to erase_regions(). | Michael Woerister | -14/+32 |
| 2016-05-23 | Make the Default docs more like the other traits | Carol (Nichols || Goulding) | -3/+26 |