| Age | Commit message (Expand) | Author | Lines |
| 2018-05-25 | Fix 07c42af554c to work on stable | Mark Simulacrum | -7/+25 |
| 2018-05-24 | Fix issue #50811 (`NaN > NaN` was true). | kennytm | -7/+6 |
| 2018-04-27 | use `reveal_all` during drop elaboration | Niko Matsakis | -2/+4 |
| 2018-04-26 | Allow variant discriminant initializers to refer to other initializers of the... | Oliver Schneider | -3/+75 |
| 2018-04-25 | Only warn on erroneous promoted constants | Oliver Schneider | -9/+7 |
| 2018-04-21 | Add back missing `#![feature(never_type)]`s | kennytm | -0/+3 |
| 2018-04-21 | Revert stabilization of `feature(never_type)`. | Felix S. Klock II | -0/+1 |
| 2018-04-20 | Fix ICE with `main`'s return type containing lifetimes | Shotaro Yamada | -4/+4 |
| 2018-04-17 | Add a tracking issue for making the warning a lint | Oliver Schneider | -0/+1 |
| 2018-04-17 | Don't abort const eval due to long running evals, just warn | Oliver Schneider | -10/+9 |
| 2018-04-17 | Sign extend constants in range patterns | Oliver Schneider | -23/+50 |
| 2018-04-17 | Stop referring to statics' AllocIds directly | Oliver Schneider | -114/+38 |
| 2018-03-31 | Auto merge of #49500 - oli-obk:mir_dep_graph, r=michaelwoerister | bors | -1/+40 |
| 2018-03-31 | Auto merge of #49472 - nikomatsakis:nll-optimize-constraint-prop-1, r=pnkfelix | bors | -48/+136 |
| 2018-03-30 | Add an explanation for the `create_depgraph_edges` | Oliver Schneider | -1/+12 |
| 2018-03-30 | Auto merge of #49403 - oli-obk:try2, r=eddyb | bors | -6/+31 |
| 2018-03-30 | Introduce an edge from a const eval to the MIR of all statics it depends on | Oliver Schneider | -1/+29 |
| 2018-03-29 | apply pnkfelix nits | Niko Matsakis | -6/+20 |
| 2018-03-29 | document reason for #[inline(never)] annotation | Niko Matsakis | -1/+1 |
| 2018-03-29 | amortize dfs storage creation | Niko Matsakis | -31/+65 |
| 2018-03-29 | remove dependency map and instead use a linked list of constraints | Niko Matsakis | -17/+55 |
| 2018-03-29 | add `#[inline(never)]` annotations | Niko Matsakis | -0/+2 |
| 2018-03-29 | Stabilize underscore lifetimes | Taylor Cramer | -1/+1 |
| 2018-03-28 | Stabilize match_default_bindings | Taylor Cramer | -1/+1 |
| 2018-03-27 | Use the actual discriminant instead of always choosing the dataful variant | Oliver Schneider | -2/+4 |
| 2018-03-27 | Auto merge of #49202 - csmoe:trait_engine, r=nikomatsakis | bors | -3/+3 |
| 2018-03-27 | Trim discriminants to their final type size | Oliver Schneider | -6/+29 |
| 2018-03-26 | Stabilize i128_type | Mark Mansi | -1/+1 |
| 2018-03-26 | Stabilize conservative_impl_trait | Taylor Cramer | -1/+1 |
| 2018-03-25 | Rollup merge of #49274 - oli-obk:slow_miri, r=michaelwoerister,eddyb | kennytm | -58/+44 |
| 2018-03-25 | Rollup merge of #49194 - Zoxc:unsafe-generator, r=cramertj | kennytm | -15/+7 |
| 2018-03-24 | Auto merge of #48482 - davidtwco:issue-47184, r=nikomatsakis | bors | -18/+138 |
| 2018-03-23 | Improved comments for UserAssertTy statement. | David Wood | -3/+3 |
| 2018-03-23 | Rollup merge of #49030 - Zoxc:misc, r=michaelwoerister | Alex Crichton | -3/+3 |
| 2018-03-23 | Rollup merge of #48265 - SimonSapin:nonzero, r=KodrAus | Alex Crichton | -3/+3 |
| 2018-03-23 | Simplify local accessors | Oliver Schneider | -10/+8 |
| 2018-03-23 | Don't allocate a local array at all if there are no locals | Oliver Schneider | -16/+22 |
| 2018-03-23 | Replace uses of `Hash(Map|Set)` with `FxHash(Map|Set)` in miri | Oliver Schneider | -8/+9 |
| 2018-03-23 | Vec<_> -> IndexVec<Local, _> | Oliver Schneider | -22/+14 |
| 2018-03-23 | import trait engine to typeck | csmoe | -3/+3 |
| 2018-03-22 | Added flag to disable user type assertion. | David Wood | -0/+2 |
| 2018-03-22 | Debug logs for replace_bound_regions_with_nll_infer_vars | Niko Matsakis | -0/+6 |
| 2018-03-22 | Temporarily only adding UserAssertTy on binding patterns. | David Wood | -3/+9 |
| 2018-03-22 | UserAssertTy can handle inference variables. | David Wood | -16/+23 |
| 2018-03-22 | No longer visiting user_assert_ty statements in constraint generation. | David Wood | -2/+4 |
| 2018-03-22 | Added comment in renumberer about UserAssertTy. | David Wood | -0/+3 |
| 2018-03-22 | Added override in renumberer for UserAssertTy. | David Wood | -1/+6 |
| 2018-03-22 | Changed location to at_self from at_successor. | David Wood | -1/+1 |
| 2018-03-22 | Added initial processing of UserAssertTy statements. | David Wood | -18/+41 |
| 2018-03-22 | Killing UserAssertTy in CleanupPostBorrowck pass. | David Wood | -17/+46 |