| Age | Commit message (Expand) | Author | Lines |
| 2011-03-19 | rustc: Use the right block context to generate unary operands. std.rc compile... | Patrick Walton | -3/+3 |
| 2011-03-19 | rustc: Allow arguments to be captured as upvars. std.rc compiles now, except ... | Patrick Walton | -3/+15 |
| 2011-03-19 | rustc: Do argument casts before loading aggregates, not after | Patrick Walton | -5/+16 |
| 2011-03-18 | rustc: Implement int-to-native casts | Patrick Walton | -0/+3 |
| 2011-03-18 | rustc: Make trans_path() generic-safe wrt nullary tags | Patrick Walton | -1/+8 |
| 2011-03-18 | rustc: Make iter_structural_ty_full() generic-safe wrt tags | Patrick Walton | -28/+10 |
| 2011-03-18 | rustc: Do pointer casts when casting native types | Patrick Walton | -1/+3 |
| 2011-03-18 | rustc: Fix inference for auto slots (forgot to stage changes before) | Patrick Walton | -7/+6 |
| 2011-03-18 | rustc: Fix inference for auto slots. Add a test case. | Patrick Walton | -0/+6 |
| 2011-03-18 | rustc: Don't always build a constant multiply instruction when translating li... | Patrick Walton | -2/+2 |
| 2011-03-18 | rustc: Move type_of() behind the check for dynamic size in trans_vec() | Patrick Walton | -1/+1 |
| 2011-03-18 | rustc: Create global variable constants during the collection phase | Patrick Walton | -14/+13 |
| 2011-03-18 | rustc: Make iter_sequence() work with generic vectors | Patrick Walton | -3/+16 |
| 2011-03-18 | rustc: Fix list.foldl() to pass its second argument by alias | Patrick Walton | -2/+2 |
| 2011-03-18 | rustc: Box the tuples returned by hashmap.items() for now since we don't have... | Patrick Walton | -4/+4 |
| 2011-03-18 | rustc: Get type params from the item when translating native items | Patrick Walton | -9/+13 |
| 2011-03-18 | Fix bug in string comparison. std.rc typechecks now. | Patrick Walton | -1/+1 |
| 2011-03-18 | Add "mutable?" to _vec in the standard library; fix callers | Patrick Walton | -19/+20 |
| 2011-03-18 | Add some mutable variants of vector functions to the standard library | Patrick Walton | -0/+31 |
| 2011-03-18 | rustc: When encountering "mutable" as a tycon, parse it, drop it on the floor... | Patrick Walton | -0/+17 |
| 2011-03-18 | Make some standard library pieces no longer dependent on mutable parameters, ... | Patrick Walton | -10/+14 |
| 2011-03-18 | rustc: Unify over alt expressions | Patrick Walton | -0/+14 |
| 2011-03-18 | rustc: Add a span_unimpl() for debugging | Patrick Walton | -1/+11 |
| 2011-03-18 | rustboot: Parse, and ignore, "mutable?" | Patrick Walton | -2/+14 |
| 2011-03-18 | rustc: Implement "mutable?". Add a test case and XFAIL it in rustboot for now. | Patrick Walton | -25/+87 |
| 2011-03-17 | rustc: Switch mutability from being a type constructor to a field annotation | Patrick Walton | -280/+327 |
| 2011-03-17 | rustc: Typo: mutabliity -> mutability | Patrick Walton | -3/+3 |
| 2011-03-17 | Move Makefile.in and configure to top level, BOOT_-qualify names, various twe... | Graydon Hoare | -190/+0 |
| 2011-03-17 | rustc: Correctly report mutability when stringifying types | Patrick Walton | -24/+24 |
| 2011-03-17 | rustc: Consider native types to be scalar | Patrick Walton | -0/+1 |
| 2011-03-17 | rustc: Sort object methods when parsing textual types in the AST | Patrick Walton | -9/+11 |
| 2011-03-17 | rustc: Don't go over inner functions' locals during the writeback phase of ty... | Patrick Walton | -5/+22 |
| 2011-03-17 | Add an option.is_none() method | Patrick Walton | -0/+7 |
| 2011-03-16 | rustc: Add str_from_cstr() and str_from_buf() functions to the standard libra... | Patrick Walton | -0/+48 |
| 2011-03-16 | Teach configure.sh to probe paths, factor a bit. | Graydon Hoare | -26/+48 |
| 2011-03-16 | Remove uses of 'break' in std lib; rustc doesn't support it yet, this is easi... | Graydon Hoare | -3/+7 |
| 2011-03-16 | Add a "rustllvm.def" file for Windows' linker to use. This allows us to creat... | Patrick Walton | -0/+473 |
| 2011-03-16 | Disable built-in rules in makefile, speed up win32 build. | Graydon Hoare | -0/+10 |
| 2011-03-16 | Fixed version of my previous patch to rename the upcall functions. This time ... | Rafael Ávila de Espíndola | -7/+6 |
| 2011-03-16 | Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. Tw... | Graydon Hoare | -225/+278 |
| 2011-03-16 | Add some more dlopen-related suppressions for the Mac | Patrick Walton | -0/+78 |
| 2011-03-16 | Beginning of build-system upgrade. | Graydon Hoare | -0/+168 |
| 2011-03-16 | Revert 6fdb81fa17b3c7147a69edc5217c9f93ff485410, it is causing failures in | Rafael Ávila de Espíndola | -21/+3 |
| 2011-03-16 | Update comment to reflect the decision to avoid cycles. | Rafael Ávila de Espíndola | -2/+2 |
| 2011-03-15 | rustc: Remove the memory-managed interface to LLVM memory buffers; passing th... | Patrick Walton | -18/+0 |
| 2011-03-15 | rustc: Open "use"d crates with the LLVM object file reader | Patrick Walton | -3/+27 |
| 2011-03-15 | rustc: Add an annotation for the crate definition to view_item_use | Patrick Walton | -20/+50 |
| 2011-03-15 | Revert "Change the numbering of upcall functions. upcall_0 now calls a functi... | Patrick Walton | -3/+4 |
| 2011-03-15 | Typo: FIXE -> FIXME | Patrick Walton | -1/+1 |
| 2011-03-15 | Add a fs.connect() function to join paths | Patrick Walton | -0/+8 |