| Age | Commit message (Expand) | Author | Lines |
| 2017-01-28 | Auto merge of #39305 - eddyb:synelide, r=nikomatsakis | bors | -0/+12 |
| 2017-01-28 | rustc: always keep an explicit lifetime in trait objects. | Eduard-Mihai Burtescu | -0/+12 |
| 2017-01-27 | move `cast_kinds` into `TypeckTables` where it belongs | Niko Matsakis | -1/+1 |
| 2017-01-27 | Auto merge of #39158 - petrochenkov:bounds, r=nikomatsakis | bors | -0/+26 |
| 2017-01-26 | rustc: don't call the HIR AST. | Eduard-Mihai Burtescu | -51/+51 |
| 2017-01-26 | rustc: rename TyCtxt's `map` field to `hir`. | Eduard-Mihai Burtescu | -8/+8 |
| 2017-01-25 | rename `Tables` to `TypeckTables` | Niko Matsakis | -2/+2 |
| 2017-01-25 | Auto merge of #35712 - oli-obk:exclusive_range_patterns, r=nikomatsakis | bors | -2/+34 |
| 2017-01-24 | Refactor parsing of generic arguments/parameters and where clauses | Vadim Petrochenkov | -0/+26 |
| 2017-01-22 | Remove unused `extern crate`s. | Jeffrey Seyfried | -1/+0 |
| 2017-01-19 | add exclusive range patterns under a feature gate | Oliver Schneider | -2/+34 |
| 2017-01-17 | Rename ObjectSum into TraitObject in AST/HIR | Vadim Petrochenkov | -1/+1 |
| 2017-01-17 | AST/HIR: Merge ObjectSum and PolyTraitRef | Vadim Petrochenkov | -2/+1 |
| 2017-01-08 | Auto merge of #38813 - eddyb:lazy-11, r=nikomatsakis | bors | -46/+46 |
| 2017-01-06 | rustc: keep track of tables everywhere as if they were per-body. | Eduard-Mihai Burtescu | -46/+46 |
| 2016-12-29 | Remove not(stage0) from deny(warnings) | Alex Crichton | -1/+1 |
| 2016-12-28 | rustc: simplify constant cross-crate loading and rustc_passes::consts. | Eduard-Mihai Burtescu | -401/+134 |
| 2016-12-28 | rustc: move function arguments into hir::Body. | Eduard-Mihai Burtescu | -2/+2 |
| 2016-12-28 | rustc: separate bodies for static/(associated)const and embedded constants. | Eduard-Mihai Burtescu | -31/+32 |
| 2016-12-28 | rustc: separate TraitItem from their parent Item, just like ImplItem. | Eduard-Mihai Burtescu | -2/+7 |
| 2016-12-22 | Refactor how global paths are represented (for both ast and hir). | Jeffrey Seyfried | -2/+2 |
| 2016-12-19 | Optimize `ast::PathSegment`. | Jeffrey Seyfried | -2/+2 |
| 2016-12-06 | annotate stricter lifetimes on LateLintPass methods to allow them to forward ... | Oliver Schneider | -39/+39 |
| 2016-12-05 | Auto merge of #38093 - mikhail-m1:stack-overflow, r=arielb1 | bors | -65/+60 |
| 2016-12-04 | Auto merge of #38092 - pnkfelix:mir-stats, r=nikomatsakis | bors | -0/+320 |
| 2016-12-03 | fix stack overflow by enum and cont issue #36163, some paths were skipped whi... | Mikhail Modin | -65/+60 |
| 2016-11-30 | Adds `-Z mir-stats`, which is similar to `-Z hir-stats`. | Felix S. Klock II | -0/+320 |
| 2016-11-30 | Update the bootstrap compiler | Alex Crichton | -1/+0 |
| 2016-11-29 | revamp `Visitor` with a single method for controlling nested visits | Niko Matsakis | -14/+16 |
| 2016-11-29 | Fix rebase breakage | Florian Diebold | -1/+1 |
| 2016-11-29 | Split nested_visit_mode function off from nested_visit_map | Florian Diebold | -13/+15 |
| 2016-11-29 | Refactor inlined items some more | Florian Diebold | -21/+30 |
| 2016-11-29 | Add make tidy fixes | Florian Diebold | -1/+2 |
| 2016-11-29 | Save bodies of functions for inlining into other crates | Florian Diebold | -5/+13 |
| 2016-11-29 | rustc_passes: fix compilation | Florian Diebold | -32/+50 |
| 2016-11-28 | Auto merge of #37791 - petrochenkov:where, r=nikomatsakis | bors | -1/+19 |
| 2016-11-28 | rustc: embed path resolutions into the HIR instead of keeping DefMap. | Eduard-Mihai Burtescu | -31/+27 |
| 2016-11-28 | rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR. | Eduard-Mihai Burtescu | -6/+0 |
| 2016-11-28 | rustc: desugar UFCS as much as possible during HIR lowering. | Eduard Burtescu | -3/+6 |
| 2016-11-25 | Support `?Sized` in where clauses | Vadim Petrochenkov | -1/+19 |
| 2016-11-22 | Auto merge of #37487 - goffrie:break, r=nikomatsakis | bors | -14/+74 |
| 2016-11-21 | Implement the `loop_break_value` feature. | Geoffry Song | -14/+74 |
| 2016-11-22 | Start warning cycle. | Jeffrey Seyfried | -0/+7 |
| 2016-11-21 | Cleanup `InternedString`. | Jeffrey Seyfried | -2/+2 |
| 2016-11-20 | Move `syntax::util::interner` -> `syntax::symbol`, cleanup. | Jeffrey Seyfried | -1/+2 |
| 2016-11-20 | Refactor away `ast::Attribute_`. | Jeffrey Seyfried | -1/+1 |
| 2016-11-16 | add a `nested_visit_map` method | Niko Matsakis | -0/+8 |
| 2016-11-16 | fallout from separating impl-items from impls | Niko Matsakis | -0/+4 |
| 2016-11-16 | refactor Visitor into ItemLikeVisitor and intravisit::Visitor | Niko Matsakis | -13/+14 |
| 2016-11-10 | Rollup merge of #37412 - eddyb:lazy-6, r=nikomatsakis | Eduard-Mihai Burtescu | -7/+6 |