| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2015-03-15 | Strip all leading/trailing newlines | Tamir Duberstein | -1/+0 | |
| 2015-02-18 | Fix remaining bench/debuginfo tests (and a few stragglers) | Niko Matsakis | -1/+1 | |
| 2015-02-10 | Enable test/debuginfo on android | Eunji Jeong | -1/+0 | |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -1/+1 | |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -1/+1 | |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -1/+1 | |
| sed -i 's/ range(\([^,]*\), *\([^()]*\))\./ (\1\.\.\2)\./g' **/*.rs | ||||
| 2015-01-20 | rustc: Remove deprecated flags | Alex Crichton | -1/+1 | |
| This commit removes a number of deprecated flags from the compiler: * opt-level => -C opt-level * debuginfo => -C debuginfo * print-crate-name => --print crate-name * print-file-name => --print file-names * no-trans => -Z no-trans * no-analysis => -Z no-analysis * parse-only => -Z parse-only * dep-info => --emit dep-info This commit also moves the --pretty flag behind `-Z unstable-options` as the pretty printer will likely not be stable for 1.0 cc #19051 | ||||
| 2015-01-05 | fix debuginfo tests | Jorge Aparicio | -1/+1 | |
| 2014-10-22 | debuginfo: Gate all LLDB debuginfo tests on a minimum LLDB version being ↵ | Michael Woerister | -0/+3 | |
| available | ||||
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -1/+1 | |
| floating point numbers for real. This will break code that looks like: let mut x = 0; while ... { x += 1; } println!("{}", x); Change that code to: let mut x = 0i; while ... { x += 1; } println!("{}", x); Closes #15201. [breaking-change] | ||||
| 2014-05-07 | debuginfo: Split debuginfo autotests into debuginfo-gdb and debuginfo-lldb | Michael Woerister | -0/+21 | |
