| Age | Commit message (Expand) | Author | Lines |
| 2014-02-21 | auto merge of #12419 : huonw/rust/compiler-unsafe, r=alexcrichton | bors | -10/+6 |
| 2014-02-21 | Changed NonCamelCaseTypes lint to warn by default | mr.Shu | -4/+12 |
| 2014-02-20 | auto merge of #12403 : eddyb/rust/generic-dtors-with-bounds, r=nikomatsakis | bors | -21/+13 |
| 2014-02-20 | auto merge of #12399 : michaelwoerister/rust/simd-fix, r=alexcrichton | bors | -1/+7 |
| 2014-02-20 | rustc: avoid compiler generated `unsafe` blocks leaking. | Huon Wilson | -10/+6 |
| 2014-02-20 | Resolve the vtables for method calls to generic Drop impls with trait bounds. | Eduard Burtescu | -16/+9 |
| 2014-02-19 | Replaced method_map_entry with method_origin and cleaned up vtable checking a... | Eduard Burtescu | -5/+4 |
| 2014-02-19 | debuginfo: Add support for simd types | Michael Woerister | -1/+7 |
| 2014-02-20 | rustc: remove some unnecessary `transmute`s. | Huon Wilson | -12/+4 |
| 2014-02-17 | Rename Bitwise::population_count to Bitwise::count_ones and add Bitwise::coun... | Brendan Zabarauskas | -1/+1 |
| 2014-02-17 | Remove CloneableTuple and ImmutableTuple traits | Brendan Zabarauskas | -1/+1 |
| 2014-02-15 | Declare by-value on-stack parameters to be noalias | Björn Steinbrink | -1/+9 |
| 2014-02-14 | Removed the obsolete ast::CallSugar (previously used by `do`). | Eduard Burtescu | -5/+5 |
| 2014-02-14 | Don't copy &Trait and &mut Trait to temporaries for every call. | Eduard Burtescu | -9/+16 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -651/+403 |
| 2014-02-13 | auto merge of #12061 : pongad/rust/delorderable, r=cmr | bors | -7/+7 |
| 2014-02-13 | Removed num::Orderable | Michael Darakananda | -7/+7 |
| 2014-02-13 | auto merge of #12017 : FlaPer87/rust/replace-mod-crate, r=alexcrichton | bors | -27/+27 |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of... | JeremyLetang | -3/+2 |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -27/+27 |
| 2014-02-12 | Removed ty_type (previously used to represent *tydesc). | Eduard Burtescu | -32/+9 |
| 2014-02-11 | trans/datum -- move mutable variable into closure | Niko Matsakis | -1/+1 |
| 2014-02-10 | auto merge of #12095 : FlaPer87/rust/issue-11709, r=nikomatsakis | bors | -7/+18 |
| 2014-02-10 | Switch to `Ignore` output mode for () blocks | Flavio Percoco | -7/+18 |
| 2014-02-10 | Consolidate codegen-related compiler flags | Alex Crichton | -13/+13 |
| 2014-02-08 | Fixed error starting with uppercase | mr.Shu | -27/+27 |
| 2014-02-08 | auto merge of #12096 : brson/rust/morestack-addr, r=thestinger | bors | -11/+0 |
| 2014-02-08 | auto merge of #12086 : huonw/rust/safe-json, r=kballard | bors | -1/+5 |
| 2014-02-07 | allow generating drop glue without the TyDesc | Daniel Micay | -267/+214 |
| 2014-02-08 | rustc: load bools as unsigned numbers. | Huon Wilson | -1/+1 |
| 2014-02-08 | rustc: put range asserts on `char` loads. | Huon Wilson | -0/+4 |
| 2014-02-07 | remove type descriptors from proc and @T | Daniel Micay | -19/+13 |
| 2014-02-07 | rustc: Remove 'morestack_addr' intrinsic. Unused | Brian Anderson | -11/+0 |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -136/+64 |
| 2014-02-06 | Redesign output flags for rustc | Alex Crichton | -2/+3 |
| 2014-02-05 | auto merge of #11939 : JeremyLetang/rust/move-libsync, r=alexcrichton | bors | -1/+1 |
| 2014-02-05 | move concurrent stuff from libextra to libsync | JeremyLetang | -1/+1 |
| 2014-02-05 | auto merge of #12045 : thestinger/rust/glue, r=pcwalton | bors | -15/+21 |
| 2014-02-05 | stop calling `exchange_free` on 0-size types | Daniel Micay | -15/+21 |
| 2014-02-04 | Don't copy arguments passed by value with indirection to allocas. | Eduard Burtescu | -3/+15 |
| 2014-02-04 | auto merge of #11717 : DiamondLovesYou/rust/master, r=alexcrichton | bors | -7/+11 |
| 2014-02-03 | extra: Re-add the Once primitve to extra::sync | Alex Crichton | -1/+1 |
| 2014-02-03 | Add an AtomicU64 type to std::sync::atomics | Alex Crichton | -4/+7 |
| 2014-02-01 | auto merge of #11974 : huonw/rust/no-at-vec, r=pcwalton | bors | -355/+263 |
| 2014-02-02 | rustc: update docs & propagate @[]/@str removal more. | Huon Wilson | -114/+53 |
| 2014-02-02 | rustc: Remove the vstore handling of @str and @[]. | Huon Wilson | -74/+7 |
| 2014-02-02 | syntax: remove the handling of @str and @[] from the parser completely. | Huon Wilson | -9/+0 |
| 2014-02-02 | rustc: remove use of @[]. | Huon Wilson | -6/+6 |
| 2014-02-02 | syntax: convert LitBinary from @[u8] to Rc<~[u8]>. | Huon Wilson | -1/+1 |
| 2014-02-01 | auto merge of #11944 : nathanielherman/rust/vec_opt, r=alexcrichton | bors | -1/+1 |