| Age | Commit message (Expand) | Author | Lines |
| 2015-06-23 | change `const_val` enum and its variants to camel-case | Oliver Schneider | -116/+112 |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -5/+4 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -2/+2 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -21/+21 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -2/+3 |
| 2015-05-26 | Auto merge of #25091 - quantheory:trait_associated_const_fixes, r=nikomatsakis | bors | -13/+35 |
| 2015-05-21 | Make various fixes: | Niko Matsakis | -8/+8 |
| 2015-05-21 | rustc: const-qualify `const fn` function and method calls. | Eduard Burtescu | -1/+60 |
| 2015-05-19 | Overhaul cast semantics and make them follow RFC401 | Ariel Ben-Yehuda | -1/+1 |
| 2015-05-17 | Fix issue where trait-associated consts could cause ICEs in match patterns. | Sean Patrick Santos | -13/+35 |
| 2015-05-17 | Fix compile-time integer overflow when using ! on unsigned values | inrustwetrust | -3/+13 |
| 2015-04-30 | Stop using Rc in TraitRef and TraitDef | Ariel Ben-Yehuda | -2/+2 |
| 2015-04-23 | Fix a number of bugs that interfered with cross-crate usage of associated con... | Sean Patrick Santos | -8/+20 |
| 2015-04-23 | Functional changes for associated constants. Cross-crate usage of associated ... | Sean Patrick Santos | -9/+152 |
| 2015-04-21 | std: Remove deprecated/unstable num functionality | Alex Crichton | -1/+1 |
| 2015-04-02 | Test fixes and rebase conflicts, round 2 | Alex Crichton | -1/+1 |
| 2015-04-01 | fix typo. | Felix S. Klock II | -1/+1 |
| 2015-04-01 | fallout when bootstrapping `rustc`. | Felix S. Klock II | -1/+11 |
| 2015-04-01 | rustc::middle::const_eval : add overflow-checking for {+, -, *}. | Felix S. Klock II | -81/+297 |
| 2015-04-01 | Fix #23890: const-eval `_ as usize`, `_ as isize` must dispatch to target type. | Felix S. Klock II | -32/+42 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -13/+13 |
| 2015-03-25 | rustc: Remove support for int/uint | Alex Crichton | -4/+4 |
| 2015-03-23 | Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses of | Niko Matsakis | -1/+1 |
| 2015-03-11 | First-class struct and tuple constants | Adolfo OchagavĂa | -24/+57 |
| 2015-03-09 | remove uses of as_slice where deref coercions can be used | Richo Healey | -3/+3 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -1/+1 |
| 2015-03-03 | Switched to Box::new in many places. | Felix S. Klock II | -2/+2 |
| 2015-03-03 | Incorporated second review suggestion from eddyb. | Felix S. Klock II | -67/+71 |
| 2015-03-03 | Incorporated first review sugestion from eddyb. | Felix S. Klock II | -100/+34 |
| 2015-03-03 | Address arith-overflow and error-handling in `const_eval.rs`. | Felix S. Klock II | -56/+210 |
| 2015-03-03 | Catch arith-overflow explicitly during `rustc::middle::const_eval`. | Felix S. Klock II | -6/+34 |
| 2015-02-27 | remove leftover annotations | Jorge Aparicio | -1/+1 |
| 2015-02-24 | Implement `<T>::method` UFCS expression syntax. | Eduard Burtescu | -9/+2 |
| 2015-02-24 | rustc: combine partial_def_map and last_private_map into def_map. | Eduard Burtescu | -5/+5 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -5/+5 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -5/+5 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-16 | rustc: check for signed division/remainder overflow. | Eduard Burtescu | -7/+35 |
| 2015-02-16 | rustc: teach const_eval more about types. | Eduard Burtescu | -75/+142 |
| 2015-02-16 | rustc: remove the vestigial "const marking" pass. | Eduard Burtescu | -165/+0 |
| 2015-02-08 | Auto merge of #21970 - michaelwoerister:lang-item-call-debug-locs, r=brson | bors | -8/+9 |
| 2015-02-06 | debuginfo: Fix problem with debug locations of constants in match patterns. | Michael Woerister | -8/+9 |
| 2015-02-06 | librustc has been updated | GuillaumeGomez | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-01-28 | Rename found_ast to FoundAst and qualify uses. | Ms2ger | -2/+2 |
| 2015-01-25 | Add the span of the operator itself to ast::BinOp. | Huon Wilson | -6/+6 |
| 2015-01-18 | Fix typedef/module name conflicts in the compiler | Alex Crichton | -1/+1 |
| 2015-01-15 | syntax: add fully qualified UFCS expressions. | Eduard Burtescu | -2/+9 |
| 2015-01-08 | Store deprecated status of i/u-suffixed literals. | Huon Wilson | -2/+2 |
| 2015-01-07 | use slicing sugar | Jorge Aparicio | -4/+4 |