| Age | Commit message (Expand) | Author | Lines |
| 2016-03-27 | rustc_trans: move the contents of the trans module to top-level. | Eduard Burtescu | -400/+0 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -1/+1 |
| 2016-03-17 | trans: Take a &Builder in call_memcpy, like call_memset. | Eduard Burtescu | -5/+3 |
| 2016-03-17 | trans: Use fmt::Debug for debugging instead of ad-hoc methods. | Eduard Burtescu | -22/+9 |
| 2016-02-12 | Autoderef in librustc_trans | Jonas Schievink | -8/+8 |
| 2016-02-11 | [breaking-change] don't pub export ast::Lit_ variants | Oliver Schneider | -3/+3 |
| 2016-01-13 | bug fixes for issues 30018 and 30822. | Felix S. Klock II | -4/+11 |
| 2015-09-16 | Use ast attributes every where (remove HIR attributes). | Nick Cameron | -3/+4 |
| 2015-09-03 | Add an intital HIR and lowering step | Nick Cameron | -19/+20 |
| 2015-08-25 | Prefer alloc_ty() instead of alloca() where possible | Björn Steinbrink | -2/+1 |
| 2015-08-25 | Separate lifetime starts from alloca() | Björn Steinbrink | -0/+1 |
| 2015-08-24 | Use StructGEP instead of GEPi where appropriate | Björn Steinbrink | -2/+2 |
| 2015-08-24 | Use get_dataptr() and get_meta() where appropriate | Björn Steinbrink | -3/+2 |
| 2015-08-24 | Rename get_len() to get_meta() | Björn Steinbrink | -1/+1 |
| 2015-07-28 | Add dropflag hints (stack-local booleans) for unfragmented paths in trans. | Felix S. Klock II | -2/+2 |
| 2015-07-10 | Rename TypeWithMutability to TypeAndMut | Jared Roesch | -1/+1 |
| 2015-07-08 | Remove snake_case names from ty.rs | Jared Roesch | -1/+1 |
| 2015-06-26 | rustc: switch most remaining middle::ty functions to methods. | Eduard Burtescu | -2/+2 |
| 2015-06-26 | rustc: make ty::mk_* constructors into methods on ty::ctxt. | Eduard Burtescu | -3/+1 |
| 2015-06-26 | rustc: move some functions in middle::ty working on Ty to methods. | Eduard Burtescu | -1/+1 |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -10/+9 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -1/+1 |
| 2015-06-19 | rustc: use Repr and UserString instead of ppaux::ty_to_string. | Eduard Burtescu | -2/+2 |
| 2015-06-12 | Split TyArray into TyArray and TySlice. | Eli Friedman | -2/+2 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -3/+3 |
| 2015-04-15 | Forbid is/us suffixes. Fixes #22496 | Brian Anderson | -1/+1 |
| 2015-04-01 | Fallout out rustc | Niko Matsakis | -1/+1 |
| 2015-03-28 | Rollup merge of #23803 - richo:unused-braces, r=Manishearth | Manish Goregaokar | -1/+1 |
| 2015-03-28 | cleanup: Remove unused braces in use statements | Richo Healey | -1/+1 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -2/+2 |
| 2015-03-17 | rustc_trans: use the drop glue of T instead of Box<T> in Trait's vtable, be i... | Eduard Burtescu | -97/+26 |
| 2015-03-14 | Fix broken codegen for [expr; n] where "expr" diverges | Björn Steinbrink | -1/+5 |
| 2015-03-14 | Always evaluate the expression in [expr; n] | Björn Steinbrink | -1/+1 |
| 2015-02-26 | Use more precise `type_needs_drop` for deciding about emitting cleanup code. | Felix S. Klock II | -2/+1 |
| 2015-02-24 | Remove ty_open and treat Unsized lvalues as *Unsized. | Eduard Burtescu | -23/+16 |
| 2015-02-18 | Round 1 fixes and rebase conflicts | Alex Crichton | -1/+1 |
| 2015-02-18 | rollup merge of #22497: nikomatsakis/suffixes | Alex Crichton | -2/+3 |
| 2015-02-18 | rollup merge of #22438: dotdash/iter_vec_loop | Alex Crichton | -37/+14 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -3/+3 |
| 2015-02-17 | Use the right array type in trans_slice_vec | Björn Steinbrink | -17/+11 |
| 2015-02-17 | Simplify the codegen in iter_vec_loop | Björn Steinbrink | -37/+14 |
| 2015-02-16 | rustc_trans: promote constant rvalues in functions as an optimization. | Eduard Burtescu | -2/+0 |
| 2015-02-08 | Auto merge of #21970 - michaelwoerister:lang-item-call-debug-locs, r=brson | bors | -4/+12 |
| 2015-02-06 | debuginfo: Implement direct debuginfo source location application for ICmp, F... | Michael Woerister | -3/+7 |
| 2015-02-06 | debuginfo: Assign debuginfo source locations to lang-item calls. | Michael Woerister | -1/+5 |
| 2015-02-06 | librustc_trans has been updated | GuillaumeGomez | -3/+3 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-02-01 | More deprecating of i/u suffixes in libraries | Alfie John | -8/+8 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -1/+1 |
| 2015-01-21 | debuginfo: Make debuginfo source location assignment more stable (Pt. 1) | Michael Woerister | -11/+16 |