| Age | Commit message (Expand) | Author | Lines |
| 2016-10-19 | Stabilise `?` | Nick Cameron | -1/+1 |
| 2016-10-11 | stop having identity casts be lexprs | Ariel Ben-Yehuda | -2/+12 |
| 2016-09-24 | librustc_mir: Propagate constants during copy propagation. | Patrick Walton | -62/+216 |
| 2016-09-21 | Auto merge of #36551 - eddyb:meta-games, r=nikomatsakis | bors | -13/+17 |
| 2016-09-20 | rustc_metadata: group information into less tags. | Eduard Burtescu | -6/+5 |
| 2016-09-20 | rustc: replace uses of NodeId in Def, other than closures and labels. | Eduard Burtescu | -6/+10 |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -1/+2 |
| 2016-09-19 | librustc: Implement def-use chains and trivial copy propagation on MIR. | Patrick Walton | -3/+385 |
| 2016-09-19 | librustc: Add a new nop statement to the MIR. | Patrick Walton | -1/+3 |
| 2016-09-16 | librustc_mir: Remove `&*x` when `x` has a reference type. | Patrick Walton | -0/+112 |
| 2016-09-11 | Use question_mark feature in librustc_mir. | Ahmed Charles | -6/+6 |
| 2016-09-08 | Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt` | Vadim Petrochenkov | -62/+57 |
| 2016-09-06 | Count and report time taken by MIR passes | Simonas Kazlauskas | -4/+4 |
| 2016-09-04 | Auto merge of #36203 - petrochenkov:uvsdot, r=nrc | bors | -12/+13 |
| 2016-09-04 | Rollup merge of #36212 - razielgn:updated-e0493-to-new-format, r=jonathandturner | Manish Goregaokar | -0/+33 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -10/+10 |
| 2016-09-04 | Replace `_, _, _` with `..` | Vadim Petrochenkov | -2/+3 |
| 2016-09-03 | Fix buggy field access translation | Vadim Petrochenkov | -6/+9 |
| 2016-09-03 | Implement layout calculation and add more trans stubs | Vadim Petrochenkov | -4/+1 |
| 2016-09-03 | Some better support for unions through the compiler | Vadim Petrochenkov | -4/+12 |
| 2016-09-02 | E0493: showing a label where the destructor is defined. | Federico Ravasio | -0/+29 |
| 2016-09-01 | turn the RFC1592 warnings into hard errors | Ariel Ben-Yehuda | -4/+0 |
| 2016-08-31 | Updated E0493 to new format. | Federico Ravasio | -0/+4 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -1/+0 |
| 2016-08-27 | Auto merge of #36030 - Manishearth:rollup, r=Manishearth | bors | -21/+21 |
| 2016-08-26 | Auto merge of #35542 - scottcarr:visitor_refactor, r=nikomatsakis | bors | -90/+79 |
| 2016-08-27 | rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer. | Eduard Burtescu | -5/+7 |
| 2016-08-27 | rustc: pass ty::Region behind an interned 'tcx reference. | Eduard Burtescu | -15/+13 |
| 2016-08-27 | rustc: use accessors for Substs::{types,regions}. | Eduard Burtescu | -1/+1 |
| 2016-08-26 | fix port for visit_statement | Scott A Carr | -3/+14 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-24 | Add error code test checkup | Guillaume Gomez | -13/+12 |
| 2016-08-20 | Rollup merge of #35780 - clementmiao:E0396_new_err_format, r=jonathandturner | Jonathan Turner | -3/+7 |
| 2016-08-20 | Rollup merge of #35778 - clementmiao:E0395_new_error_format, r=jonathandturner | Jonathan Turner | -3/+8 |
| 2016-08-18 | track Location in visitor, combine Location | Scott A Carr | -100/+78 |
| 2016-08-17 | updated E0396 to new error format | clementmiao | -3/+7 |
| 2016-08-17 | updated E0395 to new error format | clementmiao | -3/+8 |
| 2016-08-18 | Rollup merge of #35751 - nagisa:mir-scope-fix-again, r=eddyb | Eduard-Mihai Burtescu | -20/+59 |
| 2016-08-18 | Nice graphs | Simonas Kazlauskas | -12/+48 |
| 2016-08-17 | Properly invalidate the early exit cache | Simonas Kazlauskas | -20/+23 |
| 2016-08-17 | Rollup merge of #35722 - knight42:update-error-msg, r=jonathandturner | Jonathan Turner | -1/+4 |
| 2016-08-17 | rustc: remove ParamSpace from Substs. | Eduard Burtescu | -1/+1 |
| 2016-08-17 | rustc: reduce Substs and Generics to a simple immutable API. | Eduard Burtescu | -4/+4 |
| 2016-08-17 | rustc: avoid using subst::VecPerParamSpace::{empty,new} directly. | Eduard Burtescu | -5/+2 |
| 2016-08-17 | Updated E0394 to new error message | Knight | -1/+4 |
| 2016-08-16 | Auto merge of #35162 - canndrew:bang_type_coerced, r=nikomatsakis | bors | -62/+67 |
| 2016-08-15 | Add E0394 error explanation | Guillaume Gomez | -4/+22 |
| 2016-08-14 | [MIR] Add Storage{Live,Dead} statements to emit llvm.lifetime.{start,end}. | Eduard Burtescu | -54/+200 |
| 2016-08-13 | Minor fix | Andrew Cann | -2/+1 |
| 2016-08-13 | Rename empty/bang to never | Andrew Cann | -9/+11 |