| Age | Commit message (Expand) | Author | Lines |
| 2017-01-20 | Rollup merge of #38842 - abonander:proc_macro_attribute, r=jseyfried | Alex Crichton | -11/+12 |
| 2017-01-17 | run rustdoc tests in the same sort of thread rustc runs in | Niko Matsakis | -16/+28 |
| 2017-01-17 | Teach Diagnostics to highlight text | Esteban Küber | -2/+2 |
| 2017-01-17 | Give the `StringReader` a `sess: &ParseSess`. | Jeffrey Seyfried | -4/+4 |
| 2017-01-16 | Move "completed feature gate checking" pass to after "name resolution" pass s... | Austin Bonander | -11/+11 |
| 2017-01-16 | Implement `#[proc_macro_attribute]` | Austin Bonander | -0/+1 |
| 2017-01-12 | Fix linker failure | Guillaume Gomez | -1/+5 |
| 2017-01-09 | Auto merge of #38840 - kjaleshire:multiple-targets-error-fix, r=nrc | bors | -3/+4 |
| 2017-01-08 | Auto merge of #38813 - eddyb:lazy-11, r=nikomatsakis | bors | -5/+17 |
| 2017-01-08 | Auto merge of #38679 - alexcrichton:always-deny-warnings, r=nrc | bors | -1/+1 |
| 2017-01-06 | Error message more like original | Kyle Aleshire | -2/+2 |
| 2017-01-06 | rustc: keep track of tables everywhere as if they were per-body. | Eduard-Mihai Burtescu | -5/+17 |
| 2017-01-04 | Warn that the name is ignored if a link target is emitted | Kyle Aleshire | -3/+4 |
| 2017-01-02 | rustc: Stabilize the `proc_macro` feature | Alex Crichton | -2/+1 |
| 2016-12-31 | Split CtxtArenas into GlobalArenas and CtxtInterners. | Mark Simulacrum | -10/+34 |
| 2016-12-29 | Remove not(stage0) from deny(warnings) | Alex Crichton | -1/+1 |
| 2016-12-29 | Change --crate-type metadata to --emit=metadata | Nick Cameron | -4/+2 |
| 2016-12-28 | rustc: always print nested nodes where a HIR map is available. | Eduard-Mihai Burtescu | -5/+25 |
| 2016-12-28 | rustc: separate bodies for static/(associated)const and embedded constants. | Eduard-Mihai Burtescu | -2/+2 |
| 2016-12-28 | rustc: separate TraitItem from their parent Item, just like ImplItem. | Eduard-Mihai Burtescu | -0/+3 |
| 2016-12-23 | Allow legacy custom derive authors to disable warnings in downstream crates. | Jeffrey Seyfried | -0/+2 |
| 2016-12-22 | Add intrinsics & target features for rd{rand,seed} | Simonas Kazlauskas | -1/+1 |
| 2016-12-19 | Simplify `TyCtxt::create_and_enter`. | Jeffrey Seyfried | -19/+6 |
| 2016-12-15 | Use StableHasher everywhere | Ariel Ben-Yehuda | -8/+4 |
| 2016-12-12 | Auto merge of #38057 - KiChjang:display-formal-type-param, r=nikomatsakis | bors | -3/+5 |
| 2016-12-05 | Refactor FnSig to contain a Slice for its inputs and outputs. | Mark-Simulacrum | -6/+1 |
| 2016-12-04 | Auto merge of #38092 - pnkfelix:mir-stats, r=nikomatsakis | bors | -1/+13 |
| 2016-12-03 | Add TypeVariableOrigin enum | Keith Yeung | -3/+5 |
| 2016-12-03 | Auto merge of #38079 - BurntSushi:attrtarget, r=alexcrichton | bors | -1/+2 |
| 2016-12-03 | Auto merge of #38061 - cardoe:target-spec, r=alexcrichton | bors | -0/+3 |
| 2016-12-02 | rustc: add --print target-spec option | Doug Goldstein | -0/+3 |
| 2016-12-02 | limit the length of types in monomorphization | Ariel Ben-Yehuda | -1/+1 |
| 2016-11-30 | Adds `-Z mir-stats`, which is similar to `-Z hir-stats`. | Felix S. Klock II | -1/+13 |
| 2016-11-30 | Auto merge of #37800 - alexcrichton:new-bootstrap, r=eddyb | bors | -2/+0 |
| 2016-11-30 | Update the bootstrap compiler | Alex Crichton | -2/+0 |
| 2016-11-30 | Auto merge of #38014 - jseyfried:refactor_path_resolution, r=nrc | bors | -3/+0 |
| 2016-11-30 | rustc: track the Span's of definitions across crates. | Eduard-Mihai Burtescu | -5/+1 |
| 2016-11-29 | Add new #[target_feature = "..."] attribute. | Andrew Gallant | -1/+2 |
| 2016-11-29 | rustc_driver: fix compilation | Florian Diebold | -2/+5 |
| 2016-11-29 | Remove `resolver.record_resolution()`. | Jeffrey Seyfried | -3/+0 |
| 2016-11-28 | rustc: rework stability to be on-demand for type-directed lookup. | Eduard Burtescu | -12/+9 |
| 2016-11-28 | rustc_typeck: save the type cache for rustdoc and save-analysis. | Eduard Burtescu | -45/+47 |
| 2016-11-28 | rustc: embed path resolutions into the HIR instead of keeping DefMap. | Eduard-Mihai Burtescu | -8/+4 |
| 2016-11-24 | Revisions from review comments, squashed. | Felix S. Klock II | -6/+0 |
| 2016-11-24 | Add `-Z print-type-sizes`, a tool for digging into how variants are laid out. | Felix S. Klock II | -0/+10 |
| 2016-11-22 | Auto merge of #37681 - nrc:crate-metadata, r=@alexcrichton | bors | -0/+3 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -1/+1 |
| 2016-11-21 | Fix fallout in `rustdoc` and tests. | Jeffrey Seyfried | -4/+4 |
| 2016-11-21 | Remove `Rc` from the interner. | Jeffrey Seyfried | -8/+0 |
| 2016-11-21 | Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p... | Jeffrey Seyfried | -6/+5 |