| Age | Commit message (Expand) | Author | Lines |
| 2011-06-15 | Reformat source tree (minus a couple tests that are still grumpy). | Graydon Hoare | -220/+168 |
| 2011-06-14 | Apply the makefile changes again, this time fixin the driver to not produce a | Rafael Ávila de Espíndola | -5/+3 |
| 2011-06-13 | Enough driver support to link an empty program on linux. Will | Rafael Ávila de Espíndola | -5/+16 |
| 2011-06-11 | rustc: Link with main.o | Patrick Walton | -3/+4 |
| 2011-06-09 | Further support for predicate constraints | Tim Chevalier | -3/+4 |
| 2011-06-07 | rustc: Use a set-based approach to unification; remove ty_bound_param and ty_... | Patrick Walton | -1/+1 |
| 2011-06-06 | First take on an alias-safety checker | Marijn Haverbeke | -0/+3 |
| 2011-06-01 | rustc: Add a new mode to the pretty printer that prints out node IDs, for deb... | Patrick Walton | -3/+6 |
| 2011-06-01 | rustc: Remove else-after-return in main | Patrick Walton | -21/+21 |
| 2011-06-01 | rustc: Fold --pretty and --typed-pretty into a single option with an optional... | Patrick Walton | -17/+39 |
| 2011-05-31 | Now imports are not re-exported unless 'export' is explicitly used. | Paul Stansifer | -3/+3 |
| 2011-05-31 | rustc: Remove unneeded type params from alt patterns | Brian Anderson | -4/+4 |
| 2011-05-26 | Remove residual uses of fold, and fold itself. | Graydon Hoare | -3/+0 |
| 2011-05-26 | Add early returns to rustc main on non-compiling paths. | Graydon Hoare | -0/+2 |
| 2011-05-22 | rustc: More cleanup of rustc.rs | Brian Anderson | -65/+61 |
| 2011-05-22 | rustc: Some refactoring of rustc.rs | Brian Anderson | -46/+63 |
| 2011-05-22 | rustc: Cleanup formatting in rustc.rs | Brian Anderson | -16/+12 |
| 2011-05-20 | Options fix from erickt. | Graydon Hoare | -1/+1 |
| 2011-05-19 | Move type cache and node type table into type context. | Graydon Hoare | -12/+9 |
| 2011-05-19 | OptLevel changes. Accepts levels 0 to 3 only. '-O' is synonym for --OptLevel=2. | Graydon Hoare | -6/+39 |
| 2011-05-19 | Typestate checking code no longer uses fold -- only walk. | Tim Chevalier | -3/+3 |
| 2011-05-17 | rustc: Have typechecking no longer rebuild the AST | Patrick Walton | -3/+1 |
| 2011-05-17 | rustc: Add a typed pretty-printing mode for debugging | Patrick Walton | -8/+24 |
| 2011-05-17 | Finally rename std::_xxx to std::xxx | Marijn Haverbeke | -24/+24 |
| 2011-05-16 | Merge remote branch 'origin/master' into HEAD | Graydon Hoare | -14/+20 |
| 2011-05-16 | Rewrite everything to use [] instead of vec() in value position. | Graydon Hoare | -22/+22 |
| 2011-05-16 | Fix get_os and get_arch | Tim Chevalier | -12/+17 |
| 2011-05-16 | Started adding support for return checking and non-returning function annotat... | Tim Chevalier | -2/+3 |
| 2011-05-16 | Replace --bitcode with the canonical --emit-llvm | Kelly Wilson | -3/+3 |
| 2011-05-16 | Add automatic exe generation capabilities. Add --bitcode flag to generate onl... | Kelly Wilson | -2/+68 |
| 2011-05-13 | rustc: lowercase the link and link::write modules | Brian Anderson | -12/+12 |
| 2011-05-13 | Fix naming of libc that was mangled by recent module changes | Brian Anderson | -3/+3 |
| 2011-05-13 | Move capture checking into resolve.rs | Marijn Haverbeke | -3/+0 |
| 2011-05-13 | Change resolve to use walk instead of fold | Marijn Haverbeke | -4/+2 |
| 2011-05-12 | rustc: Pass a node type table around, unused as of yet | Patrick Walton | -2/+4 |
| 2011-05-12 | Add stats option and lazily emit glue. | Graydon Hoare | -0/+4 |
| 2011-05-12 | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | -130/+130 |
| 2011-05-12 | Keep resolve data in external hash table, rather than embedded defs | Marijn Haverbeke | -12/+14 |
| 2011-05-11 | Give the lexer a session so that it can fail more informatively | Brian Anderson | -1/+1 |
| 2011-05-11 | Use a const for crate-num-zero (ast.local_crate) | Marijn Haverbeke | -2/+2 |
| 2011-05-10 | rustc: Make -g not take an argument | Patrick Walton | -1/+1 |
| 2011-05-10 | Add --time-llvm-passes. | Graydon Hoare | -2/+5 |
| 2011-05-06 | Rename std modules to be camelcased | Marijn Haverbeke | -37/+37 |
| 2011-05-06 | Ge the host triple using LLVM. Fix a few 'mutable' warnings also. | Kelly Wilson | -8/+26 |
| 2011-05-06 | Use #env to bake a git revision string into rustc's --version output. | Graydon Hoare | -4/+5 |
| 2011-05-05 | Add --help, --version and -v flags (not yet supporting GIT_REV env var, waiti... | Graydon Hoare | -4/+23 |
| 2011-05-05 | rustc: Add a Link module; move crate writing to it to slim down trans slightly | Patrick Walton | -14/+15 |
| 2011-05-04 | rustc: Detect the system root and allow the user to override if necessary | Patrick Walton | -3/+20 |
| 2011-05-04 | Add a structure for passing option flags around the compiler, put it in sessi... | Graydon Hoare | -51/+60 |
| 2011-05-04 | Support new -g flag, only mangle glue names by type when it's passed. | Graydon Hoare | -10/+14 |