| Age | Commit message (Expand) | Author | Lines |
| 2018-11-19 | Refactor and add `PlaceContext::AscribeUserTy`. | David Wood | -99/+191 |
| 2018-11-10 | If we encounter `_` ascribed to structural pattern like `(a, b)`, just skip r... | Felix S. Klock II | -8/+11 |
| 2018-10-29 | Add intern table for `List<ProjectionElem<'tcx, (), ()>>`. | Felix S. Klock II | -0/+8 |
| 2018-10-29 | Add the actual chain of projections to `UserTypeProjection`. | Felix S. Klock II | -8/+119 |
| 2018-10-29 | Checkpoint: Added abstraction over collection of projections into user type. | Felix S. Klock II | -4/+40 |
| 2018-10-29 | Added `mir::UserTypeProjection`, a stub for a structure that projects *into* ... | Felix S. Klock II | -6/+34 |
| 2018-10-29 | Remove `PlaceContext` from API of `mir::Visitor::visit_projection_elem`. | Felix S. Klock II | -4/+2 |
| 2018-10-29 | Shrink `Statement`. | Nicholas Nethercote | -1/+5 |
| 2018-10-25 | Auto merge of #55347 - pietroalbini:rollup, r=pietroalbini | bors | -14/+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-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 |
| 2018-10-19 | convert `FnDef` to `TypeOf`, which is more general | Niko Matsakis | -2/+9 |
| 2018-10-18 | add support for storing extra data in an allocation | Ralf Jung | -2/+6 |
| 2018-10-17 | Auto merge of #54941 - pnkfelix:issue-21232-reject-partial-reinit, r=nikomats... | bors | -1/+13 |
| 2018-10-16 | Add `Place::base_local` method and improve doc for `Place::local` to clarify ... | Felix S. Klock II | -1/+13 |
| 2018-10-15 | pacify the mercilous tidy | Niko Matsakis | -2/+8 |
| 2018-10-15 | introduce a more expressive `UserSubsts` | Niko Matsakis | -3/+3 |
| 2018-10-15 | introduce `FnDef` and `AdtDef` to `UserTypeAnnotation` | Niko Matsakis | -1/+5 |
| 2018-10-15 | introduce a `UserTypeAnnotation` enum | Niko Matsakis | -16/+30 |
| 2018-10-12 | Auto merge of #54942 - matthewjasper:wf-type-annotations, r=nikomatsakis | bors | -2/+2 |
| 2018-10-10 | Use the span of the user type for `AscribeUserType` | Matthew Jasper | -2/+2 |
| 2018-10-10 | typos and spaces | Ralf Jung | -2/+2 |
| 2018-10-10 | miri engine: basic support for pointer provenance tracking | Ralf Jung | -42/+90 |
| 2018-10-09 | Auto merge of #54762 - RalfJung:miri-validate, r=oli-obk | bors | -1/+7 |
| 2018-10-09 | miri engine: also check return type before calling function | Ralf Jung | -1/+7 |
| 2018-10-09 | Auto merge of #54757 - nikomatsakis:nll-issue-54573-user-annot, r=pnkfelix | bors | -3/+3 |
| 2018-10-09 | Auto merge of #54798 - matthewjasper:free-region-closure-errors, r=nikomatsakis | bors | -2/+42 |
| 2018-10-08 | do not skip renumbering the place in place-type-ascriptions | Niko Matsakis | -3/+3 |
| 2018-10-06 | Improve closure region bound errors | Matthew Jasper | -2/+5 |
| 2018-10-06 | Move ConstraintCategory to rustc::mir | Matthew Jasper | -0/+37 |
| 2018-10-05 | Add doc comment explaining what `BlockTailInfo` is. | Felix S. Klock II | -0/+8 |
| 2018-10-05 | Add flag to `mir::LocalDecl` to track whether its a temp from some subexpr a ... | Felix S. Klock II | -3/+35 |
| 2018-10-04 | Auto merge of #54666 - matthewjasper:mir-function-spans, r=pnkfelix | bors | -1/+7 |
| 2018-10-04 | Rollup merge of #54788 - ljedrz:cleanup_rustc_mir, r=oli-obk | Pietro Albini | -27/+22 |
| 2018-10-03 | Record whether a Call in MIR corresponds to a call in HIR | Matthew Jasper | -1/+7 |
| 2018-10-03 | A handful of cleanups for rustc/mir | ljedrz | -27/+22 |
| 2018-10-03 | Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis | bors | -7/+30 |
| 2018-10-02 | Improve implicit self mutability suggestions. | David Wood | -7/+30 |
| 2018-10-01 | Auto merge of #54693 - RalfJung:ctfe-scalar-pair-undef, r=oli-obk | bors | -102/+12 |