| Age | Commit message (Expand) | Author | Lines |
| 2016-05-04 | Check transmutes between types without statically known sizes. | Eduard Burtescu | -225/+264 |
| 2016-05-04 | Compute LLVM-agnostic type layouts in rustc. | Eduard Burtescu | -9/+1004 |
| 2016-05-04 | Parse data-layout specifications. | Eduard Burtescu | -0/+255 |
| 2016-04-12 | std: Stabilize APIs for the 1.9 release | Alex Crichton | -9/+10 |
| 2016-04-08 | Auto merge of #32738 - Aatch:mir-operand-fn-ret, r=arielb1 | bors | -4/+8 |
| 2016-04-07 | Auto merge of #32016 - nikomatsakis:incr-comp-save, r=mw | bors | -616/+487 |
| 2016-04-07 | Rollup merge of #32748 - aturon:simplified-spec, r=nikomatsakis | Manish Goregaokar | -70/+162 |
| 2016-04-07 | Rollup merge of #32674 - jseyfried:1422_groundwork, r=nikomatsakis | Manish Goregaokar | -72/+101 |
| 2016-04-07 | Auto merge of #32583 - arielb1:need-a-bound, r=nikomatsakis | bors | -149/+238 |
| 2016-04-07 | test the substs ppaux code both with and without -Z verbose | Ariel Ben-Yehuda | -1/+2 |
| 2016-04-07 | Improve `PrivateItemsInPublicInterfacesVisitor` | Jeffrey Seyfried | -1/+12 |
| 2016-04-07 | Use the node id from the `Restricted` variant when checking accessibility | Jeffrey Seyfried | -12/+20 |
| 2016-04-07 | Make `hir::Visibility` non-copyable and add `ty::Visibility` | Jeffrey Seyfried | -51/+70 |
| 2016-04-07 | Refactor away `hir::Visibility::inherit_from` | Jeffrey Seyfried | -9/+0 |
| 2016-04-06 | Auto merge of #32230 - GuillaumeGomez:extend_css, r=alexcrichton | bors | -21/+85 |
| 2016-04-06 | Rollup merge of #32766 - nikomatsakis:constant-pattern-warning-cycle, r=eddyb | Steve Klabnik | -1/+1 |
| 2016-04-06 | rebase over the hir rename | Niko Matsakis | -3/+2 |
| 2016-04-06 | remove svh module | Niko Matsakis | -1/+0 |
| 2016-04-06 | add function to retrace a DefPath to a DefId | Niko Matsakis | -0/+49 |
| 2016-04-06 | break dep-graph into modules, parameterize DepNode | Niko Matsakis | -241/+408 |
| 2016-04-06 | make an incremental crate | Niko Matsakis | -363/+13 |
| 2016-04-06 | restructure rustc options relating to incr. comp. | Niko Matsakis | -12/+19 |
| 2016-04-06 | Rollup merge of #32570 - eddyb:tis-but-a-front, r=nikomatsakis | Manish Goregaokar | -500/+9118 |
| 2016-04-06 | rustc: retire hir::map's paths. | Eduard Burtescu | -242/+63 |
| 2016-04-06 | change constant patterns to have a warning cycle | Niko Matsakis | -1/+1 |
| 2016-04-06 | Move span into `StructField` | Vadim Petrochenkov | -1/+1 |
| 2016-04-06 | rustc: move some maps from ty to hir. | Eduard Burtescu | -26/+29 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -71/+71 |
| 2016-04-06 | syntax: dismantle ast_util. | Eduard Burtescu | -49/+64 |
| 2016-04-06 | rustc: dismantle hir::util, mostly moving functions to methods. | Eduard Burtescu | -389/+366 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -121/+8924 |
| 2016-04-05 | clean the note-reporting code in report_selection_error | Ariel Ben-Yehuda | -39/+62 |
| 2016-04-05 | improve the printing of substs and trait-refs | Ariel Ben-Yehuda | -91/+103 |
| 2016-04-05 | improve error message | Ariel Ben-Yehuda | -2/+2 |
| 2016-04-05 | suggest adding a where-clause when that can help | Ariel Ben-Yehuda | -14/+72 |
| 2016-04-05 | remove workaround that prints error messages with TyErr | Ariel Ben-Yehuda | -6/+1 |
| 2016-04-05 | Auto merge of #32743 - Manishearth:rollup, r=Manishearth | bors | -80/+168 |
| 2016-04-05 | Reinstate fast_reject for overlap checking | Aaron Turon | -70/+162 |
| 2016-04-05 | Rollup merge of #32710 - jonas-schievink:consider-last-semi, r=nagisa | Manish Goregaokar | -2/+2 |
| 2016-04-05 | Rollup merge of #32596 - soltanmm:lazy, r=nikomatsakis | Manish Goregaokar | -77/+158 |
| 2016-04-05 | Rollup merge of #32403 - vlastachu:super_in_path, r=jseyfried | Manish Goregaokar | -1/+8 |
| 2016-04-05 | Auto merge of #29463 - jseyfried:master, r=nikomatsakis | bors | -68/+23 |
| 2016-04-05 | Fixes bug which accepting using `super` in use statemet. | vlastachu | -1/+8 |
| 2016-04-05 | Centralize nightly compiler flags handling | Guillaume Gomez | -21/+85 |
| 2016-04-04 | Address nits | Masood Malekghassemi | -24/+25 |
| 2016-04-04 | fix corner case around top of stack | Niko Matsakis | -39/+32 |
| 2016-04-04 | process cycles as soon as they are detected | Niko Matsakis | -124/+162 |
| 2016-04-04 | Handle operand temps for function calls | James Miller | -4/+8 |
| 2016-04-03 | Fix "consider removing this semicolon" help | Jonas Schievink | -2/+2 |
| 2016-04-02 | Auto merge of #32579 - michaelwoerister:stable-symbol-name-fix, r=eddyb | bors | -1/+1 |