| Age | Commit message (Expand) | Author | Lines |
| 2016-07-04 | Auto merge of #34638 - zackmdavis:if_let_over_none_empty_block_arm, r=jseyfried | bors | -3/+2 |
| 2016-07-03 | prefer `if let` to match with `None => {}` arm in some places | Zack M. Davis | -3/+2 |
| 2016-07-03 | std: Stabilize APIs for the 1.11.0 release | Alex Crichton | -1/+0 |
| 2016-06-29 | Rollup merge of #34497 - oli-obk:double_negation, r=eddyb | Manish Goregaokar | -48/+41 |
| 2016-06-27 | Revert "skip double negation in const eval" | Oliver Schneider | -48/+41 |
| 2016-06-26 | Rollup merge of #34339 - jseyfried:thin_vec, r=petrochenkov,Manishearth | Jeffrey Seyfried | -1/+1 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -4/+6 |
| 2016-06-21 | don't warn on casting byte strs to slices | Oliver Schneider | -0/+1 |
| 2016-06-19 | Generalize and abstract `ThinAttributes` | Jeffrey Seyfried | -1/+1 |
| 2016-06-16 | Rollup merge of #34207 - petrochenkov:nohyg, r=jseyfried | Manish Goregaokar | -2/+1 |
| 2016-06-10 | Auto merge of #34174 - shepmaster:16-bit-mir, r=Aatch | bors | -20/+5 |
| 2016-06-11 | Remove last traces of identifier hygiene from HIR | Vadim Petrochenkov | -2/+1 |
| 2016-06-10 | Allow truncating constants to 16-bit u/isize | Jake Goulding | -20/+5 |
| 2016-06-10 | Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos... | Vadim Petrochenkov | -38/+22 |
| 2016-06-09 | fix damage in librustc | Ariel Ben-Yehuda | -2/+3 |
| 2016-06-09 | handle string literals correctly in match checking | Ariel Ben-Yehuda | -75/+112 |
| 2016-06-09 | implement RFC495 semantics for slice patterns | Ariel Ben-Yehuda | -58/+45 |
| 2016-06-05 | rustc_const_eval: work around double rounding. | Eduard Burtescu | -38/+71 |
| 2016-06-05 | rustc_const_eval: track the length and index in IndexOutOfBounds. | Eduard Burtescu | -5/+14 |
| 2016-06-05 | rustc_const_eval: strings are not indexable in Rust 1.x. | Eduard Burtescu | -3/+0 |
| 2016-06-05 | rustc_const_eval: remove unused arithmetic ErrKind variants. | Eduard Burtescu | -12/+0 |
| 2016-06-03 | Auto merge of #33460 - shepmaster:16-bit-pointers, r=Aatch | bors | -0/+3 |
| 2016-06-01 | Fix E0165 code examples | Guillaume Gomez | -3/+4 |
| 2016-05-30 | Rollup merge of #33793 - GuillaumeGomez:compile_fail, r=GuillaumeGomez | Manish Goregaokar | -1/+3 |
| 2016-05-28 | Refactor away some functions from hir::pat_util | Vadim Petrochenkov | -26/+20 |
| 2016-05-28 | Separate bindings from other patterns in HIR | Vadim Petrochenkov | -63/+44 |
| 2016-05-27 | * Fix compile_fail tag (in some cases, it compiled whereas it wasn't expected... | Guillaume Gomez | -1/+3 |
| 2016-05-26 | Replace pat_adjust_pos with an iterator adapter | Vadim Petrochenkov | -3/+2 |
| 2016-05-26 | Implement `..` in tuple (struct) patterns | Vadim Petrochenkov | -16/+27 |
| 2016-05-19 | Support 16-bit pointers as well as i/usize | Jake Goulding | -0/+3 |
| 2016-05-16 | Remove hir::Ident | Vadim Petrochenkov | -4/+4 |
| 2016-05-12 | Add more details and examples in error code | ggomez | -4/+9 |
| 2016-05-11 | Rollup merge of #33260 - mrmiywj:help-on-pattern-guard, r=guillaumegomez | Steve Klabnik | -10/+51 |
| 2016-05-11 | rustc: Split local type contexts interners from the global one. | Eduard Burtescu | -10/+8 |
| 2016-05-11 | rustc: More interning for data used in Ty<'tcx>. | Eduard Burtescu | -3/+3 |
| 2016-05-11 | rustc: Wrap users of InferCtxt in an anonymous scope. | Eduard Burtescu | -54/+51 |
| 2016-05-11 | rustc: Remove the TyCtxt field from ParameterEnvironment. | Eduard Burtescu | -1/+1 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -21/+27 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -36/+35 |
| 2016-05-11 | rustc: Avoid free functions taking &TyCtxt and &InferCtxt. | Eduard Burtescu | -7/+6 |
| 2016-05-11 | infer: Use methods for creating an InferCtxt. | Eduard Burtescu | -11/+10 |
| 2016-05-09 | Auto merge of #33457 - oli-obk:const_err/cast_u8_ptr, r=eddyb | bors | -0/+6 |
| 2016-05-08 | Auto merge of #33091 - sanxiyn:unused-trait-import-3, r=nrc | bors | -1/+1 |
| 2016-05-08 | casting `b"text"` to `* const u8` doesn't work in const_eval | Oliver 'ker' Schneider | -0/+6 |
| 2016-05-03 | Rollup merge of #33339 - oli-obk:fix/const_eval, r=japaric | Manish Goregaokar | -48/+37 |
| 2016-05-03 | Remove unused trait imports flagged by lint | Seo Sanghyeon | -1/+1 |
| 2016-05-03 | Rollup merge of #33323 - birkenfeld:issue-31221, r=Manishearth | Manish Goregaokar | -2/+21 |
| 2016-05-03 | add help on pattern guard | mrmiywj | -10/+51 |
| 2016-05-02 | replace fileline_{help,note} with {help,note} | Niko Matsakis | -1/+1 |
| 2016-05-02 | refactor infer function | Oliver Schneider | -20/+20 |