| Age | Commit message (Expand) | Author | Lines |
| 2016-05-18 | Auto merge of #33476 - nikomatsakis:incr-comp-xcrate, r=mw | bors | -3/+47 |
| 2016-05-18 | allow retracing paths across crates | Niko Matsakis | -2/+46 |
| 2016-05-18 | change svh to store a u64 | Niko Matsakis | -1/+1 |
| 2016-05-18 | Auto merge of #33710 - Manishearth:rollup, r=Manishearth | bors | -0/+3 |
| 2016-05-18 | Rollup merge of #33695 - nikomatsakis:spezializes-cache, r=aturon | Manish Goregaokar | -0/+3 |
| 2016-05-18 | Auto merge of #33654 - petrochenkov:hirident, r=nrc | bors | -1/+1 |
| 2016-05-17 | warn for where/return-types that reference regions | Niko Matsakis | -0/+80 |
| 2016-05-17 | introduce a specializes cache | Niko Matsakis | -0/+3 |
| 2016-05-16 | Remove hir::Ident | Vadim Petrochenkov | -1/+1 |
| 2016-05-14 | Rollup merge of #33572 - nagisa:assoc-const-types, r=eddyb | Manish Goregaokar | -20/+2 |
| 2016-05-12 | Gen right parameter envirnoment for assoc consts | Simonas Kazlauskas | -20/+2 |
| 2016-05-11 | Extend rustc_on_unimplemented flag: if a message is available at an impl, thi... | ggomez | -1/+0 |
| 2016-05-11 | Fixup indentation after methodification. | Eduard Burtescu | -135/+135 |
| 2016-05-11 | rustc: Split local type contexts interners from the global one. | Eduard Burtescu | -222/+357 |
| 2016-05-11 | rustc_typeck: Generalize over 'tcx != 'gcx. | Eduard Burtescu | -9/+115 |
| 2016-05-11 | rustc: Remove the unnecessary ast_ty_to_ty_cache. | Eduard Burtescu | -10/+2 |
| 2016-05-11 | rustc: More interning for data used in Ty<'tcx>. | Eduard Burtescu | -137/+207 |
| 2016-05-11 | rustc: Generalize a minimum set of functions over 'tcx != 'gcx. | Eduard Burtescu | -470/+581 |
| 2016-05-11 | rustc: Wrap users of InferCtxt in an anonymous scope. | Eduard Burtescu | -33/+26 |
| 2016-05-11 | rustc: Remove the TyCtxt field from ParameterEnvironment. | Eduard Burtescu | -37/+32 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -143/+153 |
| 2016-05-11 | rustc: Keep a reference to the interners in TyCtxt. | Eduard Burtescu | -91/+110 |
| 2016-05-11 | rustc: Use set recovery APIs in the TyCtxt interners. | Eduard Burtescu | -36/+49 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -340/+350 |
| 2016-05-11 | rustc: Avoid free functions taking &TyCtxt and &InferCtxt. | Eduard Burtescu | -25/+19 |
| 2016-05-11 | typeck: Avoid passing &TyCtxt around where possible. | Eduard Burtescu | -4/+8 |
| 2016-05-11 | infer: Use methods for creating an InferCtxt. | Eduard Burtescu | -10/+6 |
| 2016-05-11 | rustc: Always refer to TyCtxt as tcx. | Eduard Burtescu | -137/+137 |
| 2016-05-09 | Reimplement pretty printing | Jeffrey Seyfried | -0/+1 |
| 2016-05-08 | Auto merge of #33091 - sanxiyn:unused-trait-import-3, r=nrc | bors | -0/+9 |
| 2016-05-08 | Auto merge of #33130 - eddyb:mir-const, r=nikomatsakis | bors | -1/+11 |
| 2016-05-07 | Rollup merge of #33438 - birkenfeld:dup-words, r=steveklabnik | Steve Klabnik | -2/+2 |
| 2016-05-07 | mir: build MIR for constants and static initializers. | Eduard Burtescu | -1/+11 |
| 2016-05-05 | Fix some some duplicate words. | Georg Brandl | -2/+2 |
| 2016-05-03 | change the newly-added errors to warnings | Ariel Ben-Yehuda | -12/+42 |
| 2016-05-03 | address review comments | Ariel Ben-Yehuda | -81/+75 |
| 2016-05-03 | require the existential bounds of an object type to be object-safe | Ariel Ben-Yehuda | -4/+15 |
| 2016-05-03 | require the non-last elements of a tuple to be Sized | Ariel Ben-Yehuda | -14/+25 |
| 2016-05-03 | refactor the handling of builtin candidates | Ariel Ben-Yehuda | -4/+10 |
| 2016-05-03 | add comments and tests | Ariel Ben-Yehuda | -5/+33 |
| 2016-05-03 | Short-cut Sized matching on ADTs | Ariel Ben-Yehuda | -1/+150 |
| 2016-05-03 | Warn unused trait imports | Seo Sanghyeon | -0/+9 |
| 2016-04-28 | Address style nits | Jeffrey Seyfried | -3/+5 |
| 2016-04-27 | Avoid using the hir map when visibility checking in `resolve` | Jeffrey Seyfried | -10/+20 |
| 2016-04-24 | syntax: Merge keywords and remaining special idents in one list | Vadim Petrochenkov | -2/+2 |
| 2016-04-24 | syntax: Make static/super/self/Self keywords + special ident cleanup | Vadim Petrochenkov | -4/+4 |
| 2016-04-19 | Check transmutes between types without statically known sizes. | Eduard Burtescu | -37/+135 |
| 2016-04-19 | Compute LLVM-agnostic type layouts in rustc. | Eduard Burtescu | -9/+1004 |
| 2016-04-19 | Parse data-layout specifications. | Eduard Burtescu | -0/+255 |
| 2016-04-16 | Auto merge of #32909 - sanxiyn:unused-trait-import-2, r=alexcrichton | bors | -6/+4 |