| Age | Commit message (Expand) | Author | Lines |
| 2018-07-29 | Remove unused `mut`s | Matthew Jasper | -1/+1 |
| 2018-07-28 | Auto merge of #52678 - matthewjasper:better-spans, r=nikomatsakis | bors | -4/+4 |
| 2018-07-27 | Auto merge of #52733 - pnkfelix:issue-51348-make-temp-for-each-candidate-in-a... | bors | -37/+94 |
| 2018-07-26 | Use better spans for dummy accesses used in matches | Matthew Jasper | -4/+4 |
| 2018-07-26 | review feedback: no reason to clone just to make a singleton slice. | Felix S. Klock II | -2/+4 |
| 2018-07-26 | Issue #51348: lower `match` so an ident gets a distinct temp *for each* candi... | Felix S. Klock II | -37/+92 |
| 2018-07-25 | parameterize `BitVector` and `BitMatrix` by their index types | Niko Matsakis | -2/+2 |
| 2018-07-23 | Promoteds are statics and statics have a place, not just a value | Oliver Schneider | -26/+15 |
| 2018-07-20 | MIR changes to improve NLL cannot mutate errors | Matthew Jasper | -50/+169 |
| 2018-07-13 | Auto merge of #52046 - cramertj:fix-generator-mir, r=eddyb | bors | -40/+94 |
| 2018-07-12 | Ensure StorageDead is created even if variable initialization fails | Taylor Cramer | -40/+94 |
| 2018-07-06 | Auto merge of #52021 - nikomatsakis:nll-region-errors, r=estebank | bors | -0/+1 |
| 2018-07-05 | Auto merge of #51967 - varkor:const-body-break-continue, r=estebank | bors | -9/+10 |
| 2018-07-03 | store the `HirId` of the upvar | Niko Matsakis | -0/+1 |
| 2018-07-03 | Fix various nll unused mut errors | Matthew Jasper | -7/+33 |
| 2018-07-02 | Add more safeguards to "missing binding mode" errors | varkor | -6/+7 |
| 2018-07-02 | Fix an ICE using break and continue as array lengths | varkor | -3/+3 |
| 2018-06-29 | Auto merge of #51729 - matthewjasper:move-errors, r=nikomatsakis | bors | -37/+88 |
| 2018-06-28 | Use `Ident`s in a number of structures in HIR | Vadim Petrochenkov | -4/+4 |
| 2018-06-27 | Group move errors before reporting, add suggestions | Matthew Jasper | -11/+54 |
| 2018-06-27 | Generate a direct assignment in MIR for `let x = y;` | Matthew Jasper | -26/+34 |
| 2018-06-25 | Make find_breakable_scope non-mutable | varkor | -3/+3 |
| 2018-06-19 | Thread more argument info down from `Hir` into the `mir::LocalDecls`. | Felix S. Klock II | -6/+36 |
| 2018-06-19 | Refactor: Replace anonymous-tuple with tuple struct as prep for adding more f... | Felix S. Klock II | -7/+9 |
| 2018-06-19 | Thread info about form of variable bindings, including spans of arg types, do... | Felix S. Klock II | -13/+26 |
| 2018-05-30 | rustc: rename mir::LocalDecl's syntactic_source_info to source_info. | Eduard-Mihai Burtescu | -13/+13 |
| 2018-05-30 | rustc: turn mir::LocalDecl's visibility_source_info into a SourceScope. | Eduard-Mihai Burtescu | -12/+9 |
| 2018-05-30 | rustc: rename mir::LocalDecl's source_info to visibility_source_info. | Eduard-Mihai Burtescu | -19/+19 |
| 2018-05-30 | rustc: turn mir::LocalDecl's syntactic_scope into a SourceInfo. | Eduard-Mihai Burtescu | -13/+18 |
| 2018-05-30 | rustc: rename mir::SourceScopeInfo to mir::SourceScopeLocalData. | Eduard-Mihai Burtescu | -9/+9 |
| 2018-05-30 | rustc: rename mir::VisibilityScope to mir::SourceScope. | Eduard-Mihai Burtescu | -68/+68 |
| 2018-05-29 | Review feedback, remove fixme comment. | Felix S. Klock II | -17/+0 |
| 2018-05-29 | Review feedback: Remove a fixme/tbd note and just add a note for the post-NLL... | Felix S. Klock II | -13/+10 |
| 2018-05-29 | Expand two-phase-borrows so that a case like this still compiles: | Felix S. Klock II | -100/+109 |
| 2018-05-29 | rust-lang/rust#27282: emit `ReadForMatch` on each match arm. | Felix S. Klock II | -4/+90 |
| 2018-05-24 | `tcx.lift_to_global` > `tcx.global_tcx().lift` | Oliver Schneider | -6/+4 |
| 2018-05-24 | Get rid of `scalar_size` | Oliver Schneider | -6/+11 |
| 2018-05-24 | change `Value::Bytes` to `Value::Bits` | Oliver Schneider | -12/+3 |
| 2018-05-21 | rustc: make mk_substs_trait take &[Kind] instead of &[Ty]. | Eduard-Mihai Burtescu | -1/+1 |
| 2018-05-19 | rustc: introduce {ast,hir}::AnonConst to consolidate so-called "embedded cons... | Eduard-Mihai Burtescu | -36/+5 |
| 2018-05-17 | Rename trans to codegen everywhere. | Irina Popa | -9/+9 |
| 2018-05-16 | Make the compiler support the label-break-value feature | est31 | -1/+1 |
| 2018-05-11 | Introduce ConstValue and use it instead of miri's Value for constant values | John Kåre Alsaker | -24/+9 |
| 2018-05-08 | Insert fields from TypeAndMut into TyRef to allow layout optimization | John Kåre Alsaker | -1/+1 |
| 2018-05-08 | Store the GeneratorInterior in the new GeneratorSubsts | John Kåre Alsaker | -19/+23 |
| 2018-05-08 | Store generator movability outside GeneratorInterior | John Kåre Alsaker | -3/+4 |
| 2018-05-03 | When using NLL, implicitly borrow match bindings for any guard, | Felix S. Klock II | -38/+365 |
| 2018-04-30 | Unify MIR assert messages and const eval errors | Oliver Schneider | -6/+6 |
| 2018-04-30 | Merge ConstMathError into EvalErrorKind | Oliver Schneider | -16/+7 |
| 2018-04-30 | Remove the `rustc_const_math` crate | Oliver Schneider | -2/+1 |