| Age | Commit message (Expand) | Author | Lines |
| 2016-02-23 | [MIR] Change SimplifyCfg pass to use bitvec | Simonas Kazlauskas | -63/+34 |
| 2016-02-20 | address review comments | Ariel Ben-Yehuda | -15/+41 |
| 2016-02-20 | use the FulfillmentContext and InferCtxt more correctly | Ariel Ben-Yehuda | -68/+105 |
| 2016-02-20 | TODO -> FIXME | Ariel Ben-Yehuda | -2/+2 |
| 2016-02-20 | type-check lvalues | Ariel Ben-Yehuda | -10/+218 |
| 2016-02-20 | fix a few remaining bugs - make check runs! | Ariel Ben-Yehuda | -9/+25 |
| 2016-02-20 | store the normalized types of field accesses | Ariel Ben-Yehuda | -25/+63 |
| 2016-02-20 | deref the argument of overloaded MIR autoderef | Ariel Ben-Yehuda | -4/+32 |
| 2016-02-20 | make *mut T -> *const T a coercion | Ariel Ben-Yehuda | -0/+12 |
| 2016-02-20 | tuple arguments to overloaded calls | Ariel Ben-Yehuda | -3/+24 |
| 2016-02-20 | be more type-safe in panic/panic_bounds_check | Ariel Ben-Yehuda | -17/+23 |
| 2016-02-20 | introduce an early pass to clear dead blocks | Ariel Ben-Yehuda | -9/+66 |
| 2016-02-20 | add -Z mir-opt-level to disable MIR optimizations | Ariel Ben-Yehuda | -2/+3 |
| 2016-02-19 | begin implementing mir-typeck | Ariel Ben-Yehuda | -4/+348 |
| 2016-02-18 | Auto merge of #31600 - nagisa:mir-msvc-seh-2, r=nikomatsakis | bors | -1/+52 |
| 2016-02-17 | MSVC SEH in MIR is implemented here | Simonas Kazlauskas | -4/+3 |
| 2016-02-16 | Split PatKind::Enum into PatKind::TupleStruct and PatKind::Path | Vadim Petrochenkov | -3/+3 |
| 2016-02-14 | Rename hir::Pat_ and its variants | Vadim Petrochenkov | -14/+14 |
| 2016-02-13 | Auto merge of #31564 - durka:lang-item-icemelt, r=nikomatsakis | bors | -2/+2 |
| 2016-02-12 | Autoderef in librustc_mir | Jonas Schievink | -4/+4 |
| 2016-02-11 | Add a no-landing-pads MIR pass | Simonas Kazlauskas | -1/+53 |
| 2016-02-11 | bootstrap: Add a bunch of Cargo.toml files | Alex Crichton | -0/+18 |
| 2016-02-11 | don't ICE on missing box_free lang item | Alex Burka | -2/+2 |
| 2016-02-10 | Auto merge of #31465 - nagisa:mir-free-fix, r=nikomatsakis | bors | -14/+21 |
| 2016-02-09 | refactor `MirPass` to always require a tcx | Oliver Schneider | -22/+19 |
| 2016-02-09 | make `MirMap` a struct instead of a type alias for `NodeMap` | Oliver Schneider | -17/+17 |
| 2016-02-08 | Auto merge of #31324 - nagisa:mir-transforms, r=nikomatsakis | bors | -158/+68 |
| 2016-02-07 | [MIR] Fix the destination of implicit else branch | Simonas Kazlauskas | -1/+1 |
| 2016-02-07 | Do not forget to drop the boxes on scope exits | Simonas Kazlauskas | -14/+21 |
| 2016-02-06 | Reuse MIR visitors for EraseRegions pass | Simonas Kazlauskas | -158/+68 |
| 2016-02-04 | Address nits on build/scope.rs | Simonas Kazlauskas | -101/+141 |
| 2016-02-04 | Convert Drop statement into terminator | Simonas Kazlauskas | -145/+278 |
| 2016-02-04 | Remove the CallKind | Simonas Kazlauskas | -26/+14 |
| 2016-02-04 | Change successor{,_mut} to return a Vec | Simonas Kazlauskas | -2/+1 |
| 2016-02-04 | Synthesize calls to box_free language item | Simonas Kazlauskas | -38/+96 |
| 2016-02-03 | upgrade comments on MIR structures and functions to doc comments | Oliver Schneider | -31/+33 |
| 2016-01-29 | [MIR] Fix type of temporary for `box EXPR` | Oliver Schneider | -4/+3 |
| 2016-01-24 | rustc_mir: Mark the crate as unstable | Alex Crichton | -0/+2 |
| 2016-01-24 | mk: Move from `-D warnings` to `#![deny(warnings)]` | Alex Crichton | -0/+1 |
| 2016-01-21 | Add Debug impl and erase region for TypedConstVal | Florian Hahn | -1/+2 |
| 2016-01-21 | Introduce and use TypedConstVal for Repeat | Florian Hahn | -6/+8 |
| 2016-01-21 | [MIR] use mir::repr::Constant in ExprKind::Repeat, close #29789 | Florian Hahn | -13/+5 |
| 2016-01-21 | Auto merge of #31010 - petrochenkov:def, r=arielb1 | bors | -23/+21 |
| 2016-01-20 | Auto merge of #30945 - nagisa:mir-optional-block-dest, r=nikomatsakis | bors | -62/+90 |
| 2016-01-20 | Rename Def's variants and don't reexport them | Vadim Petrochenkov | -21/+21 |
| 2016-01-20 | Refactor definitions of ADTs in rustc::middle::def | Vadim Petrochenkov | -9/+7 |
| 2016-01-19 | [MIR] Reintroduce the unit temporary | Simonas Kazlauskas | -62/+90 |
| 2016-01-16 | Auto merge of #30533 - nikomatsakis:fulfillment-tree, r=aturon | bors | -1/+1 |
| 2016-01-16 | fallout from removing the `errors_will_be_reported` flag | Niko Matsakis | -1/+1 |
| 2016-01-15 | Auto merge of #30446 - michaelwu:associated-const-type-params-pt1, r=nikomats... | bors | -1/+2 |