| Age | Commit message (Expand) | Author | Lines |
| 2018-04-30 | Auto merge of #50204 - Manishearth:approx-enum, r=estebank | bors | -3/+3 |
| 2018-04-30 | Auto merge of #50092 - abonander:issue-49934, r=petrochenkov | bors | -1/+2 |
| 2018-04-29 | Warn on pointless `#[derive]` in more places | Austin Bonander | -1/+2 |
| 2018-04-29 | Auto merge of #48605 - KiChjang:unused-mut-warning, r=nikomatsakis | bors | -1/+29 |
| 2018-04-28 | Auto merge of #50240 - nnethercote:LazyBTreeMap, r=cramertj | bors | -12/+14 |
| 2018-04-28 | Only check possibly initialized values and also loop over fn args | Keith Yeung | -4/+6 |
| 2018-04-28 | Track unused mutable variables across closures | Keith Yeung | -1/+13 |
| 2018-04-28 | Allow MIR borrowck to catch unused mutable locals | Keith Yeung | -0/+14 |
| 2018-04-28 | Rollup merge of #50257 - estebank:fix-49560, r=nikomatsakis | kennytm | -0/+6 |
| 2018-04-28 | Rollup merge of #50273 - Amanieu:issue-49532, r=alexcrichton | kennytm | -5/+10 |
| 2018-04-28 | Rollup merge of #49968 - christianpoveda:stabilize_dyn, r=nikomatsakis | kennytm | -10/+8 |
| 2018-04-27 | Auto merge of #50102 - Zoxc:query-nomacro, r=michaelwoerister | bors | -506/+505 |
| 2018-04-27 | removed linting for dyn_trait | Christian Poveda | -9/+7 |
| 2018-04-27 | dyn_trait feature-gate just for stage0 | Christian Poveda | -1/+1 |
| 2018-04-27 | Auto merge of #50097 - glandium:box_free, r=nikomatsakis | bors | -2/+10 |
| 2018-04-27 | Allow #[inline] on closures | Amanieu d'Antras | -5/+10 |
| 2018-04-27 | Address comments | John Kåre Alsaker | -6/+9 |
| 2018-04-27 | Store query jobs and query results in separate maps to reduce memory usage | John Kåre Alsaker | -25/+23 |
| 2018-04-27 | Move query functions out from the define_maps! macro | John Kåre Alsaker | -298/+325 |
| 2018-04-27 | Create a job immediately when looking in the query map and start it later | John Kåre Alsaker | -245/+216 |
| 2018-04-27 | Auto merge of #50275 - kennytm:rollup, r=kennytm | bors | -44/+67 |
| 2018-04-27 | Rollup merge of #49894 - Zoxc:sync-internedstring, r=michaelwoerister | kennytm | -44/+67 |
| 2018-04-27 | Auto merge of #49891 - cuviper:compiletest-crash, r=alexcrichton | bors | -2/+4 |
| 2018-04-27 | Auto merge of #48995 - aravind-pg:canonical-query, r=nikomatsakis | bors | -100/+293 |
| 2018-04-27 | Rename InternedString to LocalInternedString and introduce a new thread-safe ... | John Kåre Alsaker | -44/+67 |
| 2018-04-27 | Auto merge of #49420 - nox:enum-scalarpair, r=eddyb | bors | -8/+73 |
| 2018-04-26 | Retry canonical trait query in standard mode if overflow occurs | Aravind Gollakota | -17/+39 |
| 2018-04-26 | Remove the stored obligation in OverflowError to simplify things | Aravind Gollakota | -24/+22 |
| 2018-04-26 | Introduce trait query mode and use it to set overflow error handling policy i... | Aravind Gollakota | -11/+58 |
| 2018-04-26 | Simplify trait selector's evaluation API slightly | Aravind Gollakota | -22/+6 |
| 2018-04-26 | Port existing callers of `evaluate_obligation` to the new canonical trait query | Aravind Gollakota | -8/+8 |
| 2018-04-26 | Create a canonical trait query for `evaluate_obligation` | Aravind Gollakota | -15/+113 |
| 2018-04-26 | Refactor overflow handling in traits::select to propagate overflow instead of... | Aravind Gollakota | -69/+113 |
| 2018-04-26 | Auto merge of #50253 - nikomatsakis:regressions-2018-04-26, r=eddyb | bors | -3/+9 |
| 2018-04-26 | Don't ICE on tuple struct ctor with incorrect arg count | Esteban Küber | -0/+6 |
| 2018-04-26 | Auto merge of #49513 - nox:univariant-fieldless-enum-as-zst, r=eddyb | bors | -5/+4 |
| 2018-04-26 | improved debug output | Niko Matsakis | -3/+9 |
| 2018-04-26 | Fixed tidy errors. | Irina Popa | -2/+2 |
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -18/+18 |
| 2018-04-26 | Treat repr(Rust) univariant fieldless enums as a ZST (fixes #15747) | Anthony Ramine | -5/+4 |
| 2018-04-26 | rustc_target: move for_variant and field TyLayout methods to a trait. | Irina Popa | -80/+39 |
| 2018-04-26 | rustc_target: move LayoutOf's type parameter to an associated type. | Irina Popa | -6/+9 |
| 2018-04-26 | rustc_target: move in type definitions from ty::layout. | Irina Popa | -759/+39 |
| 2018-04-26 | Rename rustc_back::target to rustc_target::spec. | Irina Popa | -16/+15 |
| 2018-04-26 | rustc_back: move LinkerFlavor, PanicStrategy, and RelroLevel to target. | Irina Popa | -10/+10 |
| 2018-04-26 | Auto merge of #50072 - oli-obk:discriminants, r=eddyb | bors | -17/+23 |
| 2018-04-26 | Use ScalarPair for tagged enums | Anthony Ramine | -8/+73 |
| 2018-04-26 | Allow variant discriminant initializers to refer to other initializers of the... | Oliver Schneider | -17/+23 |
| 2018-04-26 | Auto merge of #49732 - Zoxc:sync-dep-graph, r=michaelwoerister | bors | -204/+219 |
| 2018-04-26 | Implement LazyBTreeMap and use it in a few places. | Nicholas Nethercote | -12/+14 |