| Age | Commit message (Expand) | Author | Lines |
| 2012-09-15 | add some debug!'s to help diagnose failure of issue-1763.rs | Niko Matsakis | -1/+12 |
| 2012-09-15 | Fix broken assertion in regionck for code like (a[])() | Niko Matsakis | -4/+3 |
| 2012-09-15 | regionck: fix bug where autoref regions are not inferred to be large enough | Niko Matsakis | -44/+101 |
| 2012-09-14 | rustc: Back out box annihilator | Patrick Walton | -3/+4 |
| 2012-09-14 | Add core::reflect, start migrating core::repr to use it. Tidy up various Repr... | Graydon Hoare | -1/+0 |
| 2012-09-14 | rustc: Call the box annihilator in main | Patrick Walton | -2/+7 |
| 2012-09-14 | rustc: Make the box annihilator a language item | Patrick Walton | -2/+5 |
| 2012-09-14 | Have parser recognize static, self region. | Niko Matsakis | -26/+51 |
| 2012-09-14 | Adapt callee to avoid intermediary for move/copy arguments (cc #3402) | Niko Matsakis | -80/+88 |
| 2012-09-13 | Fix unused variable warning. | Graydon Hoare | -1/+0 |
| 2012-09-13 | Fix bug in auto-ref on bounded type parameters | Niko Matsakis | -14/+62 |
| 2012-09-13 | s/vec::as_buf/vec::as_imm_buf/, fix comment, remove set.rs | Niko Matsakis | -5/+5 |
| 2012-09-13 | remove commented code that used to cause borrowck error | Niko Matsakis | -10/+0 |
| 2012-09-12 | Rename str::unsafe to str::raw | Brian Anderson | -2/+2 |
| 2012-09-12 | trans: overhaul match bindings. No more phi, one code path for guards. | Niko Matsakis | -401/+701 |
| 2012-09-12 | Rename vec::unsafe to vec::raw | Brian Anderson | -22/+22 |
| 2012-09-12 | Promote 'const', 'copy', 'fn' to strict keywords | Brian Anderson | -1/+1 |
| 2012-09-12 | purge the separate path for rel ops (e.g., ==) vs other bin ops | Niko Matsakis | -60/+22 |
| 2012-09-12 | rustc: Use the correct 'fail' rtcall | Brian Anderson | -1/+1 |
| 2012-09-12 | Add some monomorphizing instrumentation, simplify types before emitting glue. | Graydon Hoare | -4/+135 |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -30/+30 |
| 2012-09-12 | Rename core::rt_fail to core::rt_fail_ | Brian Anderson | -1/+1 |
| 2012-09-12 | Make moves in arguments explicit in libsyntax and rustc | Tim Chevalier | -6/+6 |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -1438/+1823 |
| 2012-09-11 | Make the 'move mode but datum will not store' error fatal | Tim Chevalier | -1/+1 |
| 2012-09-11 | Remove dead code | Tim Chevalier | -1/+0 |
| 2012-09-11 | Promote 'impl' from restricted keyword to strict | Brian Anderson | -13/+13 |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -7/+7 |
| 2012-09-11 | Promote 'struct' from a restricted keyword to a strict keyword | Brian Anderson | -183/+182 |
| 2012-09-11 | Make moves explicit in rustc | Tim Chevalier | -23/+23 |
| 2012-09-11 | rustc: Remove a bunch of unused upcalls | Patrick Walton | -17/+2 |
| 2012-09-11 | rustc: Remove the cmp type upcall | Patrick Walton | -34/+0 |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -14/+10 |
| 2012-09-10 | Camel case std::serialization | Brian Anderson | -9/+7 |
| 2012-09-10 | rustc: Stop calling cmp shape glue in trans. | Patrick Walton | -10/+38 |
| 2012-09-10 | Convert std::map to camel case | Brian Anderson | -185/+185 |
| 2012-09-10 | Convert class methods to impl methods. Stop parsing class methods | Brian Anderson | -12/+33 |
| 2012-09-10 | rustc: Trim down and rename trans_compare. Now only eq shape glue remains. | Patrick Walton | -26/+9 |
| 2012-09-10 | rustc: Make range literals use compare_scalar_types instead of trans_compare | Patrick Walton | -32/+6 |
| 2012-09-10 | rustc: Long lines | Patrick Walton | -3/+7 |
| 2012-09-10 | rustc: Move trans_compare into alt.rs | Patrick Walton | -0/+29 |
| 2012-09-10 | Combine the vtable_origins from impl + method. | Niko Matsakis | -84/+265 |
| 2012-09-10 | rustc: Make shape-based compare glue never called for comparison operators. | Patrick Walton | -36/+57 |
| 2012-09-09 | Long lines | Brian Anderson | -1/+2 |
| 2012-09-09 | Rename variables that clash with keywords | Brian Anderson | -37/+37 |
| 2012-09-08 | Fix some old syntax | Brian Anderson | -2/+2 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -41/+41 |
| 2012-09-07 | Remove import and export from intrinsic.rs | Brian Anderson | -4/+3 |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -19/+19 |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -82/+353 |