| Age | Commit message (Expand) | Author | Lines |
| 2018-11-05 | fix validation error on non-integer enum discriminants | Ralf Jung | -3/+12 |
| 2018-11-04 | rustc_target: pass contexts by reference, not value. | Eduard-Mihai Burtescu | -32/+32 |
| 2018-11-04 | Correct indentation on documentation comment. | David Wood | -10/+10 |
| 2018-11-03 | If we encounter `_` ascribed to structural pattern like `(a, b)`, just skip r... | Felix S. Klock II | -8/+11 |
| 2018-11-02 | Auto merge of #55087 - levex:e0669-improve-span, r=nagisa | bors | -2/+3 |
| 2018-11-02 | Auto merge of #55316 - RalfJung:retagging, r=oli-obk | bors | -77/+38 |
| 2018-10-30 | Use vec![x; n] instead of iter::repeat(x).take(n).collect() | ljedrz | -4/+2 |
| 2018-10-29 | fix nits | Ralf Jung | -4/+8 |
| 2018-10-29 | all hail tidy | Ralf Jung | -1/+2 |
| 2018-10-29 | make inliner remove the fn_entry flag on Retag statements | Ralf Jung | -7/+21 |
| 2018-10-29 | Remove validation test cases; add retagging test case | Ralf Jung | -1/+1 |
| 2018-10-29 | Emit Retag statements, kill Validate statements | Ralf Jung | -76/+18 |
| 2018-10-28 | Auto merge of #54487 - RalfJung:ctfe-backtrace, r=oli-obk | bors | -86/+67 |
| 2018-10-28 | always print backtrace when CTFE_BACKTRACE is set | Ralf Jung | -2/+2 |
| 2018-10-28 | remove some unused CTFE error variants | Ralf Jung | -50/+1 |
| 2018-10-28 | rename env var to control ctfe backtraces, and make it usually show the backt... | Ralf Jung | -36/+66 |
| 2018-10-28 | Rollup merge of #55244 - wesleywiser:issue-50411, r=nikomatsakis | kennytm | -0/+36 |
| 2018-10-27 | Refactor and add `PlaceContext::AscribeUserTy`. | David Wood | -99/+191 |
| 2018-10-26 | Add intern table for `List<ProjectionElem<'tcx, (), ()>>`. | Felix S. Klock II | -0/+8 |
| 2018-10-26 | Add the actual chain of projections to `UserTypeProjection`. | Felix S. Klock II | -8/+119 |
| 2018-10-26 | Checkpoint: Added abstraction over collection of projections into user type. | Felix S. Klock II | -4/+40 |
| 2018-10-26 | Added `mir::UserTypeProjection`, a stub for a structure that projects *into* ... | Felix S. Klock II | -6/+34 |
| 2018-10-26 | Remove `PlaceContext` from API of `mir::Visitor::visit_projection_elem`. | Felix S. Klock II | -4/+2 |
| 2018-10-26 | Auto merge of #55382 - kennytm:rollup, r=kennytm | bors | -13/+29 |
| 2018-10-26 | Rollup merge of #55346 - nnethercote:shrink-StatementKind, r=nagisa | kennytm | -1/+5 |
| 2018-10-26 | Rollup merge of #55271 - sinkuu:traversal_iter, r=matthewjasper | kennytm | -12/+24 |
| 2018-10-26 | Auto merge of #53821 - oli-obk:sanity_query, r=RalfJung | bors | -30/+50 |
| 2018-10-26 | Shrink `Statement`. | Nicholas Nethercote | -1/+5 |
| 2018-10-25 | preserve const eval error information through trait error system | Ralf Jung | -1/+1 |
| 2018-10-25 | for now, just use NULL ptr for unsized locals | Ralf Jung | -5/+5 |
| 2018-10-25 | Layout errors can happen because something was too generic | Oliver Schneider | -3/+4 |
| 2018-10-25 | Report const eval error inside the query | Oliver Schneider | -24/+43 |
| 2018-10-25 | Auto merge of #55347 - pietroalbini:rollup, r=pietroalbini | bors | -14/+5 |
| 2018-10-25 | Fix CR feedback | Wesley Wiser | -10/+5 |
| 2018-10-25 | Rollup merge of #55345 - RalfJung:no-null, r=oli-obk | Pietro Albini | -9/+1 |
| 2018-10-25 | Rollup merge of #55340 - RalfJung:operand-docs, r=oli-obk | Pietro Albini | -3/+2 |
| 2018-10-25 | Remove is_null | Ralf Jung | -9/+1 |
| 2018-10-25 | Operands no longer appear in places | Ralf Jung | -3/+2 |
| 2018-10-24 | introduce (but do not use) `ascribe_user_type` goal | Niko Matsakis | -0/+8 |
| 2018-10-23 | fix typos in various places | Matthias Krüger | -2/+2 |
| 2018-10-22 | Remove the `suite_index` parameter of the `run_passes!()` macro | Wesley Wiser | -0/+12 |
| 2018-10-22 | Don't rerun Mir passes when inlining | Niko Matsakis | -0/+29 |
| 2018-10-23 | Unimplement ExactSizeIterator | Shotaro Yamada | -12/+24 |
| 2018-10-21 | Auto merge of #55069 - matthewjasper:explain-free-region-liveness, r=nikomats... | bors | -0/+2 |
| 2018-10-21 | Auto merge of #55125 - RalfJung:stacked-borrows, r=oli-obk | bors | -2/+6 |
| 2018-10-20 | Use more accurate `ConstraintCategory`s | Matthew Jasper | -0/+2 |
| 2018-10-20 | Auto merge of #55114 - oli-obk:fx#map, r=nikomatsakis | bors | -4/+4 |
| 2018-10-19 | Prefer `Default::default` over `FxHash*::default` in struct constructors | Oliver Scherer | -4/+4 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -4/+4 |
| 2018-10-19 | replace `UserTypeAnnotation::AdtDef` with `TypeOf` | Niko Matsakis | -6/+0 |