| Age | Commit message (Expand) | Author | Lines |
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -12/+14 |
| 2019-05-12 | Auto merge of #60679 - petrochenkov:lit2, r=matklad | bors | -25/+21 |
| 2019-05-12 | Auto merge of #60244 - SimonSapin:dangling, r=oli-obk | bors | -2/+0 |
| 2019-05-12 | Auto merge of #60474 - mati865:musl_toolchain, r=alexcrichton | bors | -3/+10 |
| 2019-05-11 | Move literal parsing code into a separate file | Vadim Petrochenkov | -16/+16 |
| 2019-05-11 | Auto merge of #60714 - varkor:existential-global-lift-ice, r=oli-obk | bors | -0/+44 |
| 2019-05-11 | Simplify conversions between tokens and semantic literals | Vadim Petrochenkov | -9/+5 |
| 2019-05-11 | Auto merge of #60717 - varkor:impl-const-generic, r=matthewjasper | bors | -0/+22 |
| 2019-05-11 | Auto merge of #60721 - estebank:ice-ice-baby, r=varkor | bors | -0/+26 |
| 2019-05-10 | Avoid ICE by using delay_span_bug | Esteban Küber | -0/+26 |
| 2019-05-11 | Add test for const impl | varkor | -0/+22 |
| 2019-05-10 | Auto merge of #59288 - Centril:hir-if-to-match, r=oli-obk | bors | -40/+287 |
| 2019-05-10 | Add test | varkor | -0/+44 |
| 2019-05-10 | Rollup merge of #60697 - hellow554:fix_60629, r=michaelwoerister | Mazdak Farrokhzad | -0/+10 |
| 2019-05-10 | Rollup merge of #60692 - davidtwco:pr-60676-followup, r=Centril | Mazdak Farrokhzad | -0/+8 |
| 2019-05-10 | add test checking that 'if cond { .. }' where 'cond: &mut? bool' isn't accepted. | Mazdak Farrokhzad | -0/+61 |
| 2019-05-10 | Various test changes | Mazdak Farrokhzad | -19/+200 |
| 2019-05-10 | Adjust mir-opt tests for new HIR without If | Mazdak Farrokhzad | -21/+26 |
| 2019-05-10 | Add a bunch more tests. | David Wood | -5/+506 |
| 2019-05-10 | Move uninhabited tests into subdirectory. | David Wood | -16/+16 |
| 2019-05-10 | Fix uninhabitedness of non-exhaustive enums. | David Wood | -105/+385 |
| 2019-05-10 | Fix inhabitedness of non-exhaustive variants. | David Wood | -1/+1 |
| 2019-05-10 | Add uninhabitedness tests w/ `#[non_exhaustive]`. | David Wood | -0/+193 |
| 2019-05-10 | Make tests compatible with musl host | Mateusz Mikuła | -3/+10 |
| 2019-05-10 | add regression test for #60629 | Marcel Hellwig | -0/+10 |
| 2019-05-10 | Extend existing test for nested mut patterns. | David Wood | -0/+8 |
| 2019-05-09 | Rollup merge of #60676 - davidtwco:issue-60674, r=cramertj | Mazdak Farrokhzad | -0/+27 |
| 2019-05-09 | Rollup merge of #60648 - petrochenkov:shorten2, r=Dylan-DPC | Mazdak Farrokhzad | -2/+1 |
| 2019-05-09 | Rollup merge of #60188 - estebank:recover-block, r=varkor | Mazdak Farrokhzad | -14/+192 |
| 2019-05-09 | Rollup merge of #59348 - matthewjasper:cleanup-drop-shims, r=arielb1 | Mazdak Farrokhzad | -0/+88 |
| 2019-05-09 | Do not modify mutability of simple bindings. | David Wood | -1/+1 |
| 2019-05-09 | Add regression test for #60674. | David Wood | -0/+27 |
| 2019-05-09 | Rollup merge of #60647 - petrochenkov:nospace, r=michaelwoerister | Mazdak Farrokhzad | -123/+123 |
| 2019-05-09 | Rollup merge of #60644 - estebank:abolish-ice, r=varkor | Mazdak Farrokhzad | -0/+51 |
| 2019-05-09 | Rollup merge of #60641 - estebank:defer-ice, r=oli-obk | Mazdak Farrokhzad | -0/+25 |
| 2019-05-09 | Rollup merge of #60627 - matklad:test, r=estebank | Mazdak Farrokhzad | -0/+40 |
| 2019-05-09 | Rollup merge of #60572 - tmandry:issue-59972, r=RalfJung,oli-obk | Mazdak Farrokhzad | -0/+23 |
| 2019-05-09 | Rollup merge of #60550 - skinny121:concrete_const_tests, r=varkor | Mazdak Farrokhzad | -0/+50 |
| 2019-05-09 | Skip codegen for one UI test with long file path | Vadim Petrochenkov | -2/+1 |
| 2019-05-09 | cleanup: Remove `DefIndexAddressSpace` | Vadim Petrochenkov | -123/+123 |
| 2019-05-08 | Use `delay_span_bug` for "Failed to unify obligation" | Esteban Küber | -0/+51 |
| 2019-05-08 | Instead of ICEing on incorrect pattern, use delay_span_bug | Esteban Küber | -0/+25 |
| 2019-05-08 | test for #50518 | Aleksey Kladov | -0/+40 |
| 2019-05-08 | Add tests for concrete const types | ben | -0/+50 |
| 2019-05-08 | Auto merge of #60378 - froydnj:apple-target-modifications, r=michaelwoerister | bors | -0/+104 |
| 2019-05-07 | Auto merge of #60586 - cramertj:await, r=oli-obk | bors | -94/+567 |
| 2019-05-07 | Implement built-in await syntax | Taylor Cramer | -94/+567 |
| 2019-05-07 | Auto merge of #60612 - Centril:rollup-61drhqt, r=Centril | bors | -19/+321 |
| 2019-05-07 | Rollup merge of #60583 - varkor:const-generics-emplace, r=petrochenkov | Mazdak Farrokhzad | -8/+2 |
| 2019-05-07 | Rollup merge of #60535 - taiki-e:async-fn-arguments, r=cramertj | Mazdak Farrokhzad | -11/+319 |