| Age | Commit message (Expand) | Author | Lines |
| 2016-11-08 | Auto merge of #36843 - petrochenkov:dotstab, r=nikomatsakis | bors | -1/+1 |
| 2016-11-05 | Rollup merge of #37583 - michaelwoerister:hir-stats, r=alexcrichton | Alex Crichton | -2/+17 |
| 2016-11-04 | Rollup merge of #37408 - eddyb:lazy-5, r=nikomatsakis | Alex Crichton | -1/+1 |
| 2016-11-04 | Add -Zhir-stats for collecting statistics on HIR and AST | Michael Woerister | -2/+17 |
| 2016-11-03 | Auto merge of #36306 - nagisa:mir-local-cleanup, r=eddyb | bors | -9/+12 |
| 2016-11-03 | A way to remove otherwise unused locals from MIR | Simonas Kazlauskas | -9/+12 |
| 2016-11-03 | Stabilize `..` in tuple (struct) patterns | Vadim Petrochenkov | -1/+1 |
| 2016-11-02 | rustc: make all read access to tcx.tables go through a method. | Eduard Burtescu | -1/+1 |
| 2016-11-01 | Rollup merge of #37296 - srinivasreddy:librustc_driver, r=nikomatsakis | Guillaume Gomez | -188/+191 |
| 2016-10-30 | Make the crate disambiguator 128 bits instead of 256 bits. | Michael Woerister | -1/+8 |
| 2016-10-30 | Add rustc_data_structures to rustc_driver dependencies. | Michael Woerister | -0/+1 |
| 2016-10-30 | Replace all uses of SHA-256 with BLAKE2b. | Michael Woerister | -10/+14 |
| 2016-10-30 | Auto merge of #37431 - jseyfried:refactor_crate_config, r=eddyb | bors | -43/+24 |
| 2016-10-30 | run rustfmt on librustc_driver folder | Srinivas Reddy Thatiparthy | -188/+191 |
| 2016-10-29 | Move `CrateConfig` from `Crate` to `ParseSess`. | Jeffrey Seyfried | -43/+24 |
| 2016-10-28 | rustc: move the MIR map into TyCtxt. | Eduard Burtescu | -71/+39 |
| 2016-10-26 | Auto merge of #37270 - Mark-Simulacrum:smallvec-optimized-arenas, r=eddyb | bors | -10/+9 |
| 2016-10-25 | Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup... | Mark-Simulacrum | -10/+9 |
| 2016-10-22 | Rename `loader.rs` -> `locator.rs`. | Jeffrey Seyfried | -3/+2 |
| 2016-10-22 | Remove `CrateReader`, use `CrateLoader` instead. | Jeffrey Seyfried | -1/+2 |
| 2016-10-19 | Use TypedArena::alloc_slice in rustc. | Mark-Simulacrum | -5/+5 |
| 2016-10-15 | include LLVM version in `--version --verbose` | Zack M. Davis | -0/+4 |
| 2016-10-12 | Rollup merge of #37084 - jseyfried:cleanup_expanded_macro_use_scopes, r=nrc | Alex Crichton | -3/+9 |
| 2016-10-12 | Rollup merge of #37066 - nrc:stderr, r=alexcrichton | Alex Crichton | -1/+1 |
| 2016-10-12 | Stabilise `?` | Nick Cameron | -1/+1 |
| 2016-10-11 | Merge branch 'persistent_macro_scopes' into cleanup_expanded_macro_use_scopes | Jeffrey Seyfried | -3/+9 |
| 2016-10-10 | Error monitor should emit error to stderr instead of stdout | Nick Cameron | -1/+1 |
| 2016-10-07 | Refactor away `ext::expand::{expand_crate, expand_crate_with_expander}`. | Jeffrey Seyfried | -2/+8 |
| 2016-10-07 | Add macros from plugins in `libsyntax_ext::register_builtins`. | Jeffrey Seyfried | -2/+2 |
| 2016-10-06 | rustc: Rename rustc_macro to proc_macro | Alex Crichton | -14/+14 |
| 2016-10-03 | Auto merge of #36847 - alexcrichton:rustc-macro-doc, r=nrc | bors | -12/+17 |
| 2016-09-30 | Change the sigs of set_print/set_panic to allow restoring the default objects | Brian Anderson | -2/+2 |
| 2016-09-30 | rustdoc: Fix documenting rustc-macro crates | Alex Crichton | -12/+17 |
| 2016-09-28 | Rollup merge of #36760 - nrc:input2, r=alexcrichton | Jonathan Turner | -19/+20 |
| 2016-09-28 | Allow supplying an error destination via the compiler driver | Nick Cameron | -19/+20 |
| 2016-09-27 | Build the reduced graph during expansion. | Jeffrey Seyfried | -7/+6 |
| 2016-09-27 | Peform def id assignment during expansion. | Jeffrey Seyfried | -3/+0 |
| 2016-09-26 | appease tidy | Tim Neumann | -1/+2 |
| 2016-09-26 | deduplicate inline is_nightly_build implementations | Tim Neumann | -4/+1 |
| 2016-09-26 | refactor away get_unstable_features_setting | Tim Neumann | -2/+2 |
| 2016-09-24 | Load macros from `#[macro_use]` extern crates in `resolve`. | Jeffrey Seyfried | -0/+3 |
| 2016-09-23 | Load extern crates in `resolve`. | Jeffrey Seyfried | -11/+3 |
| 2016-09-22 | Refactor `no_implicit_prelude: Cell<bool>` -> `no_implicit_prelude: bool`. | Jeffrey Seyfried | -1/+2 |
| 2016-09-21 | Auto merge of #36551 - eddyb:meta-games, r=nikomatsakis | bors | -9/+11 |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -9/+11 |
| 2016-09-20 | Auto merge of #36388 - pcwalton:copy-propagation, r=nikomatsakis | bors | -0/+1 |
| 2016-09-19 | librustc: Implement def-use chains and trivial copy propagation on MIR. | Patrick Walton | -0/+1 |
| 2016-09-19 | Auto merge of #36102 - GuillaumeGomez:rustc_metadata_diagnostics, r=jonathand... | bors | -0/+1 |
| 2016-09-17 | Auto merge of #36504 - pcwalton:and-star, r=eddyb | bors | -0/+3 |
| 2016-09-16 | Auto merge of #36444 - jseyfried:macro_rules_ext, r=nrc | bors | -1/+1 |