| Age | Commit message (Expand) | Author | Lines |
| 2019-03-24 | Merge `DefPathData::VariantCtor` and `DefPathData::StructCtor` | Vadim Petrochenkov | -28/+16 |
| 2019-03-24 | Slightly more uniform treatment of struct and variant constructors | Vadim Petrochenkov | -7/+5 |
| 2019-03-24 | Auto merge of #58305 - scalexm:chalk-continued, r=nikomatsakis | bors | -34/+159 |
| 2019-03-24 | Remove `VariantDef::parent_did` | Vadim Petrochenkov | -137/+29 |
| 2019-03-24 | Remove methods is_struct/is_tuple/is_unit from VariantData | Vadim Petrochenkov | -59/+35 |
| 2019-03-24 | Separate variant id and variant constructor id. | David Wood | -207/+391 |
| 2019-03-24 | Auto merge of #59199 - estebank:untrack-errors, r=eddyb | bors | -3/+2 |
| 2019-03-24 | code review fixes | Saleem Jaffer | -7/+4 |
| 2019-03-23 | Auto merge of #59084 - estebank:diagnostic-spans, r=davidtwco | bors | -0/+13 |
| 2019-03-23 | Fixes #59361 | Peter Hall | -6/+6 |
| 2019-03-23 | Deduplicate const eval error spans for better output | Esteban Küber | -1/+3 |
| 2019-03-23 | Swap const evaluation lint spans to point at problem in primary span | Esteban Küber | -0/+11 |
| 2019-03-23 | Auto merge of #59068 - ljedrz:kill_off_NodeId_stragglers, r=Zoxc | bors | -23/+8 |
| 2019-03-23 | adding mir::StaticKind enum for static and promoted | Saleem Jaffer | -26/+34 |
| 2019-03-23 | Auto merge of #59096 - ljedrz:HirIdify_AccessLevel, r=Zoxc | bors | -7/+6 |
| 2019-03-22 | address review comments | Esteban Küber | -3/+2 |
| 2019-03-23 | Auto merge of #58929 - estebank:elide-object, r=zackmdavis | bors | -11/+29 |
| 2019-03-22 | Rollup merge of #59273 - llogiq:hir-docs, r=matthewjasper | Mazdak Farrokhzad | -1/+12 |
| 2019-03-22 | Rollup merge of #59266 - estebank:struct-parse-recovery, r=petrochenkov | Mazdak Farrokhzad | -15/+20 |
| 2019-03-22 | Rollup merge of #59170 - varkor:const-generics-rustdoc, r=QuietMisdreavus,eddyb | Mazdak Farrokhzad | -2/+2 |
| 2019-03-20 | expand the fixme | Niko Matsakis | -1/+4 |
| 2019-03-20 | refactor so that `relate_ty_var` can accommodate vid on a or b side | Niko Matsakis | -22/+130 |
| 2019-03-20 | nll_relate/mod.rs: rustfmt | Niko Matsakis | -25/+27 |
| 2019-03-20 | Fix a bug in chalk unification code | scalexm | -2/+14 |
| 2019-03-20 | Add eval_always to query macro and move a query over | John Kåre Alsaker | -13/+5 |
| 2019-03-20 | Add anon to query macro and move a query over | John Kåre Alsaker | -26/+16 |
| 2019-03-20 | Add no_force to query macro and move some queries over | John Kåre Alsaker | -54/+26 |
| 2019-03-20 | Add no_hash to query macro and move some queries over | John Kåre Alsaker | -68/+45 |
| 2019-03-20 | remove visit_static from librustc::mir | Saleem Jaffer | -17/+4 |
| 2019-03-20 | Add a -Z time option which prints only passes which runs once | John Kåre Alsaker | -15/+19 |
| 2019-03-19 | review comments | Esteban Küber | -1/+1 |
| 2019-03-19 | Update src/librustc/hir/mod.rs | Mazdak Farrokhzad | -1/+1 |
| 2019-03-18 | Rename typarams to param_names | varkor | -2/+2 |
| 2019-03-18 | cleaner code as per review | Saleem Jaffer | -10/+0 |
| 2019-03-18 | promoted is still left in 2 places | Saleem Jaffer | -22/+31 |
| 2019-03-18 | some small HIR doc improvements | Andre Bogus | -1/+12 |
| 2019-03-18 | Add load_cached query modifier and keep dep node names consistent with query ... | John Kåre Alsaker | -43/+32 |
| 2019-03-18 | Define queries using a proc macro | John Kåre Alsaker | -43/+90 |
| 2019-03-17 | Do not complain about non-existing fields after parse recovery | Esteban Küber | -15/+20 |
| 2019-03-17 | Auto merge of #58994 - oli-obk:deprecated_derive, r=petrochenkov | bors | -2/+20 |
| 2019-03-17 | Make meta-item API compatible with `LocalInternedString::get` soundness fix | Vadim Petrochenkov | -28/+14 |
| 2019-03-17 | Auto merge of #59178 - oli-obk:lazy_const, r=eddyb | bors | -288/+156 |
| 2019-03-16 | Don't report deprecation lints in derive expansions | Oliver Scherer | -2/+20 |
| 2019-03-16 | Fix rebase | Vadim Petrochenkov | -1/+1 |
| 2019-03-16 | Refactor away `NestedMetaItemKind` | Vadim Petrochenkov | -17/+15 |
| 2019-03-16 | Rename `MetaItem::ident` to `MetaItem::path` | Vadim Petrochenkov | -8/+8 |
| 2019-03-16 | syntax: Do not accidentally treat multi-segment meta-items as single-segment | Vadim Petrochenkov | -29/+35 |
| 2019-03-16 | Revert the `LazyConst` PR | Oliver Scherer | -288/+156 |
| 2019-03-16 | Rollup merge of #59201 - lambda:remove-repr-simd-isize-usize-restriction, r=a... | kennytm | -1/+0 |
| 2019-03-16 | Rollup merge of #59169 - tmandry:allow-features-flag, r=cramertj | kennytm | -0/+19 |