| Age | Commit message (Expand) | Author | Lines |
| 2018-01-01 | Fix docs for future pulldown migration | Malo Jaffré | -34/+37 |
| 2018-01-01 | Fix broken links in internal docs | Malo Jaffré | -6/+6 |
| 2017-12-28 | Auto merge of #47013 - topecongiro:issue-46655, r=petrochenkov | bors | -1/+1 |
| 2017-12-28 | Prefer to use attr::contains_name() and attr::find_by_name() | Seiichi Uchida | -1/+1 |
| 2017-12-26 | rustc: don't use union layouts for tagged union enums. | Eduard-Mihai Burtescu | -4/+4 |
| 2017-12-25 | Auto merge of #46973 - arielb1:tuple-casting, r=estebank | bors | -0/+3 |
| 2017-12-24 | Auto merge of #46859 - gereeter:uninhabited-unions, r=eddyb | bors | -11/+11 |
| 2017-12-24 | Handle casts to integer/float variables | Ariel Ben-Yehuda | -0/+3 |
| 2017-12-23 | Remove unnecessary assert that unions have only one variant | Jonathan S | -3/+0 |
| 2017-12-23 | Auto merge of #46881 - michaelwoerister:ensure-coherence, r=nikomatsakis | bors | -8/+7 |
| 2017-12-23 | Auto merge of #46864 - estebank:closure-type-err-sp, r=nikomatsakis | bors | -4/+2 |
| 2017-12-22 | Auto merge of #46842 - michaelwoerister:fingerprint-vec, r=nikomatsakis | bors | -2/+11 |
| 2017-12-22 | Auto merge of #46779 - Zoxc:par-merge-without-sync, r=arielb1 | bors | -5/+18 |
| 2017-12-22 | Rollup merge of #46809 - eddyb:issue-46769-optimal, r=arielb1 | kennytm | -7/+5 |
| 2017-12-21 | Combine GlobalArenas and DroplessArena into AllArenas | John Kåre Alsaker | -5/+18 |
| 2017-12-20 | Never mark unions as uninhabited. Although I think this is wrong, it is certa... | Jonathan S | -5/+0 |
| 2017-12-20 | incr.comp.: Use ensure() for some coherence-related queries. | Michael Woerister | -8/+4 |
| 2017-12-20 | incr.comp.: Cache check_match query. | Michael Woerister | -0/+3 |
| 2017-12-20 | incr.comp.: Use an IndexVec instead of a hashmap for storing result hashes. | Michael Woerister | -2/+11 |
| 2017-12-20 | Auto merge of #46733 - nikomatsakis:nll-master-to-rust-master-5, r=arielb1 | bors | -9/+46 |
| 2017-12-19 | Closure type error ui tweak | Esteban Küber | -4/+2 |
| 2017-12-20 | rustc: do not raise the alignment of optimized enums to the niche's alignment. | Eduard-Mihai Burtescu | -7/+5 |
| 2017-12-19 | Only mark unions as uninhabited if all of their fields are uninhabited. Fixes... | Jonathan S | -11/+19 |
| 2017-12-19 | Auto merge of #46664 - mikeyhew:raw_pointer_self, r=arielb1 | bors | -2/+8 |
| 2017-12-19 | Auto merge of #45525 - MaikKlein:collector, r=eddyb | bors | -6/+47 |
| 2017-12-18 | rustc: ensure optimized enums have a properly aligned size. | Eduard-Mihai Burtescu | -1/+2 |
| 2017-12-18 | normalize the results of `tcx.type_of` after substituting | Ariel Ben-Yehuda | -6/+1 |
| 2017-12-18 | Move has_metadata back to context.rs | Maik Klein | -14/+0 |
| 2017-12-18 | Test with trans_apply_param_substs | Maik Klein | -1/+2 |
| 2017-12-18 | Move meta_data into TyS | Maik Klein | -0/+14 |
| 2017-12-18 | Move instance related methods from TyCtxt to Instance | Maik Klein | -0/+36 |
| 2017-12-18 | Refactor paths to middle::trans to mir::mono | Maik Klein | -1/+1 |
| 2017-12-18 | Move common.rs functionality into TyCtxt | Maik Klein | -5/+9 |
| 2017-12-18 | Rename TransItem to MonoItem | Maik Klein | -0/+5 |
| 2017-12-17 | rustc: don't track whether layouts are "packed". | Eduard-Mihai Burtescu | -55/+14 |
| 2017-12-17 | implement raw-pointer `self`. Works for traits, including trait objects, but ... | Michael Hewson | -2/+8 |
| 2017-12-16 | Auto merge of #46722 - arielb1:single-self, r=eddyb | bors | -6/+22 |
| 2017-12-15 | incr.comp.: Revert hashing optimization that caused regression. | Michael Woerister | -1/+1 |
| 2017-12-15 | add a new RegionKind variant: ReClosureBound | Niko Matsakis | -0/+11 |
| 2017-12-15 | permit `ClosureOutlivesRequirement` to constrain regions or types | Niko Matsakis | -1/+1 |
| 2017-12-15 | rework region flags: 'static can be erased too | Niko Matsakis | -8/+34 |
| 2017-12-15 | rustc_trans: approximate ABI alignment for padding/union fillers. | Eduard-Mihai Burtescu | -2/+15 |
| 2017-12-15 | Auto merge of #46701 - eddyb:vector-newtypes, r=nagisa | bors | -14/+28 |
| 2017-12-14 | Auto merge of #45047 - durka:trait-alias, r=petrochenkov | bors | -0/+1 |
| 2017-12-14 | Auto merge of #46562 - michaelwoerister:faster-span-hashing, r=eddyb | bors | -1/+1 |
| 2017-12-14 | add trait aliases to typeck | Alex Burka | -0/+1 |
| 2017-12-14 | incr.comp.: Do less hashing per Span. | Michael Woerister | -1/+1 |
| 2017-12-14 | Auto merge of #45002 - oli-obk:miri, r=eddyb | bors | -16/+157 |
| 2017-12-14 | Auto merge of #46633 - estebank:arg-mismatch, r=arielb1 | bors | -0/+1 |
| 2017-12-13 | fix broken assertion in type_param | Ariel Ben-Yehuda | -6/+22 |