| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-06-17 | rustc: Use correct version key in metadata | Brian Anderson | -1/+1 | |
| 2011-06-17 | rustc: Fix a bunch of memory management bugs relating to generic interior ↵ | Patrick Walton | -7/+94 | |
| vectors. Uncomment all tests in lib-ivec. | ||||
| 2011-06-17 | Revert "rustc: Fix a bunch of memory management bugs relating to generic ↵ | Patrick Walton | -87/+6 | |
| interior vectors" This reverts commit 2b5e40311ddb6afcacf772e54a96a5204223dcc5. | ||||
| 2011-06-17 | rustc: Fix a bunch of memory management bugs relating to generic interior ↵ | Patrick Walton | -6/+87 | |
| vectors | ||||
| 2011-06-17 | Implemented enough of deep_copy that we can pass scalars and channels to ↵ | Eric Holk | -35/+39 | |
| tasks. Closes #507. | ||||
| 2011-06-17 | Started using deep_copy for spawn arguments. | Eric Holk | -15/+86 | |
| 2011-06-17 | rustc: Support both meta tags and attributes for crate metadata | Brian Anderson | -0/+4 | |
| This is a transitional patch for converting from 'meta' to attributes. Issue #487 | ||||
| 2011-06-17 | rustc: Remove metadata from the session. | Brian Anderson | -8/+2 | |
| This mechanism was not being used for anything. Issue #487. | ||||
| 2011-06-17 | Put std in stageN/lib. This avoids windows trying to load stageN/std.ll when | Rafael Ávila de Espíndola | -2/+2 | |
| stageN/runstc.exe is run. | ||||
| 2011-06-17 | rustc: Add a type_owns_heap_mem() predicate | Patrick Walton | -0/+33 | |
| 2011-06-17 | rustc: Cast to opaque interior vector types in trans_vec_append if ↵ | Patrick Walton | -2/+13 | |
| necessary. Puts out burning tinderbox. | ||||
| 2011-06-17 | rustc: Copy the contents of generic interior vectors | Patrick Walton | -83/+73 | |
| 2011-06-17 | Revert "rustc: Copy the contents of generic interior vectors" | Patrick Walton | -73/+83 | |
| This reverts commit 5bdbe1dfc217b77ff6ff5c0d67b8ac274b50f2d3. | ||||
| 2011-06-17 | rustc: Copy the contents of generic interior vectors | Patrick Walton | -83/+73 | |
| 2011-06-17 | rustc: Demand that if conditions have bool type | Brian Anderson | -0/+3 | |
| Closes #513 | ||||
| 2011-06-17 | rustc: Fail to unify if two ty_vars don't unify | Brian Anderson | -1/+6 | |
| Closes #500 | ||||
| 2011-06-17 | rustc: Demand unification of both sides of a binop | Brian Anderson | -0/+5 | |
| Issue #500 | ||||
| 2011-06-17 | Automatically add a -L to the directory the binary is in. | Rafael Ávila de Espíndola | -4/+5 | |
| 2011-06-16 | Consistify ast::local. | Paul Stansifer | -70/+75 | |
| 2011-06-16 | rustc: Fix dominance issue when translating generic interior vectors | Patrick Walton | -21/+64 | |
| 2011-06-16 | Add better error messages for bad attributes in .rc files | Brian Anderson | -1/+2 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Fix regressed handling of bad attributes | Brian Anderson | -1/+6 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Change print_file to print_crate | Brian Anderson | -11/+16 | |
| The pretty-printer needs access to the crate attributes in order to reproduce inner crate attributes in standalone .rs files Issue #487 | ||||
| 2011-06-16 | rustc: Parse crate attributes in standalone .rs files | Brian Anderson | -1/+5 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Parse attributes in crate files | Brian Anderson | -5/+15 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Parse inner items of file-level modules linked from crate files | Brian Anderson | -4/+8 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Implement type walking and comparison glue for unsafe pointers | Patrick Walton | -0/+25 | |
| 2011-06-16 | Reformat a bunch of recent churn. | Graydon Hoare | -440/+454 | |
| 2011-06-16 | rustc: Parse T[mutable?] | Patrick Walton | -1/+6 | |
| 2011-06-16 | rustc: Work around leak when translating interior vectors. Un-XFAIL ↵ | Patrick Walton | -2/+6 | |
| interior-vec.rs. | ||||
| 2011-06-16 | rustc: Add cases for istr and ivec to visit | Patrick Walton | -6/+18 | |
| 2011-06-16 | rustc: Pretty print module inner attributes | Brian Anderson | -7/+17 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Correctly mark attributes as inner attributes | Brian Anderson | -8/+14 | |
| Issue #487 | ||||
| 2011-06-16 | rustc: Parse inner attributes of modules | Brian Anderson | -17/+49 | |
| Issue #487 | ||||
| 2011-06-16 | Pretty-print if-check | Tim Chevalier | -37/+46 | |
| 2011-06-16 | rustc: Parse interior vector types in which the base type is a path properly | Patrick Walton | -14/+36 | |
| 2011-06-16 | rustc: Pretty print interior vector types | Patrick Walton | -0/+6 | |
| 2011-06-16 | Removing dead upcall_join. Closes #509. | Eric Holk | -2/+0 | |
| 2011-06-16 | Clean up whitespace oddities perpetrated by pretty-printer. | Lindsey Kuper | -12/+12 | |
| 2011-06-16 | Bring back if-check | Tim Chevalier | -129/+215 | |
| Add "if check" (expr_if_check), a variation on check that executes an "else" clause rather than failing if the check doesn't hold. | ||||
| 2011-06-16 | Get rid of old vec_append glue. | Michael Sullivan | -4/+0 | |
| 2011-06-16 | Translate the swap operator. | Michael Sullivan | -0/+18 | |
| 2011-06-16 | Fix bug in move on structure types. | Michael Sullivan | -2/+2 | |
| 2011-06-16 | Bring swap through typechecking and typestate. | Michael Sullivan | -0/+34 | |
| 2011-06-16 | Parse swap. | Michael Sullivan | -5/+15 | |
| 2011-06-16 | Add "<->" to the token definition and the lexer. | Michael Sullivan | -1/+9 | |
| 2011-06-16 | rustc: Fix LLVM type error when generating cmp glue for interior vectors | Patrick Walton | -4/+20 | |
| 2011-06-16 | rustc: Change interior vector syntax to `T[]` | Patrick Walton | -6/+21 | |
| 2011-06-16 | Refactor ast::item representation | Marijn Haverbeke | -382/+311 | |
| Most of the fields in an AST item were present in all variants. Things could be simplified considerably by putting them in the rec rather than in the variant tags. | ||||
| 2011-06-15 | Improve and test failure behavior for malformed attributes | Brian Anderson | -1/+13 | |
