| Age | Commit message (Expand) | Author | Lines |
| 2019-06-29 | Remove default bound for Machine::MemoryExtra | Christian Poveda | -2/+3 |
| 2019-06-29 | Add MemoryExtra in InterpretCx constructor params | Christian Poveda | -6/+15 |
| 2019-06-29 | Auto merge of #62105 - JohnTitor:update-miri, r=RalfJung | bors | -7/+9 |
| 2019-06-27 | Rollup merge of #62176 - Xanewok:update-rls, r=alexcrichton | Mazdak Farrokhzad | -0/+0 |
| 2019-06-27 | Rollup merge of #62171 - alexcrichton:more-restarts, r=eddyb | Mazdak Farrokhzad | -24/+47 |
| 2019-06-27 | Rollup merge of #62164 - jsgf:buffer-save-analysis, r=Xanewok | Mazdak Farrokhzad | -3/+4 |
| 2019-06-27 | Rollup merge of #62160 - ia0:question_mark_macro_sep, r=petrochenkov | Mazdak Farrokhzad | -17/+1 |
| 2019-06-27 | Rollup merge of #62156 - ehuss:update-books, r=ehuss | Mazdak Farrokhzad | -0/+0 |
| 2019-06-27 | Rollup merge of #62155 - cramertj:61872, r=centril | Mazdak Farrokhzad | -0/+21 |
| 2019-06-27 | Rollup merge of #62154 - mark-i-m:old-fixme, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-06-27 | Rollup merge of #62152 - doctorn:async_let_ice, r=cramertj | Mazdak Farrokhzad | -9/+89 |
| 2019-06-27 | Rollup merge of #62131 - Xanewok:clip-some-nits, r=petrochenkov | Mazdak Farrokhzad | -49/+49 |
| 2019-06-27 | Rollup merge of #62124 - matklad:without-with, r=petrochenkov | Mazdak Farrokhzad | -139/+121 |
| 2019-06-27 | Rollup merge of #62106 - cramertj:test-await, r=centril | Mazdak Farrokhzad | -0/+338 |
| 2019-06-27 | Rollup merge of #62102 - RalfJung:read, r=Centril | Mazdak Farrokhzad | -1/+10 |
| 2019-06-27 | Rollup merge of #62067 - doctorn:await_diagnostic, r=matthewjasper | Mazdak Farrokhzad | -0/+193 |
| 2019-06-27 | Rollup merge of #62043 - Centril:remove-fnbox, r=cramertj | Mazdak Farrokhzad | -128/+1 |
| 2019-06-27 | Rollup merge of #61878 - RalfJung:pin, r=Dylan-DPC | Mazdak Farrokhzad | -41/+130 |
| 2019-06-27 | Auto merge of #62136 - lzutao:clippy-up, r=oli-obk | bors | -11/+9 |
| 2019-06-27 | Add suggestion for missing `.await` keyword | Nathan Corbyn | -0/+193 |
| 2019-06-27 | Update RLS | Igor Matuszewski | -0/+0 |
| 2019-06-27 | rustc: Retry SIGILL linker invocations | Alex Crichton | -24/+47 |
| 2019-06-26 | save-analysis: use buffered writes | Jeremy Fitzhardinge | -3/+4 |
| 2019-06-27 | Update miri | Yuki Okushi | -7/+9 |
| 2019-06-26 | Remove outdated question_mark_macro_sep lint | Julien Cretin | -17/+1 |
| 2019-06-26 | Update books | Eric Huss | -0/+0 |
| 2019-06-26 | Add regression test for MIR drop generation in async loops | Taylor Cramer | -0/+21 |
| 2019-06-26 | remove old fixme | Mark Mansi | -1/+1 |
| 2019-06-26 | Don't ICE on item in `.await` expression | Nathan Corbyn | -9/+89 |
| 2019-06-26 | Fix clippy::precedence | Igor Matuszewski | -1/+1 |
| 2019-06-26 | Fix clippy::print_with_newline | Igor Matuszewski | -3/+3 |
| 2019-06-26 | Fix clippy::redundant_closure | Igor Matuszewski | -1/+1 |
| 2019-06-26 | Fix clippy::cast_losless | Igor Matuszewski | -13/+13 |
| 2019-06-26 | Fix clippy::redundant_field_names | Igor Matuszewski | -29/+29 |
| 2019-06-26 | ci: Disable assertions in PR builds | Alex Crichton | -0/+6 |
| 2019-06-26 | Auto merge of #61872 - matthewjasper:refactor-mir-drop-gen, r=nikomatsakis | bors | -468/+536 |
| 2019-06-26 | submodules: Update clippy from 8c80b65f to e3cb40e4 | Lzu Tao | -11/+9 |
| 2019-06-26 | Auto merge of #62072 - eddyb:generator-memory-index, r=tmandry | bors | -38/+107 |
| 2019-06-25 | Use `Local`s instead of `Place`s in MIR drop generation | Matthew Jasper | -100/+81 |
| 2019-06-25 | Add StorageDead statements for `while` conditions | Matthew Jasper | -128/+172 |
| 2019-06-25 | Unify `return`, `break` and `continue` handling | Matthew Jasper | -181/+200 |
| 2019-06-25 | Avoid checking if references implement drop | Matthew Jasper | -10/+0 |
| 2019-06-25 | Use `as_temp` to evaluate statement expressions | Matthew Jasper | -81/+96 |
| 2019-06-25 | Fix incorrect double assignment in MIR for while loops | Matthew Jasper | -6/+25 |
| 2019-06-25 | Use f{32,64}::from_bits | Igor Matuszewski | -2/+2 |
| 2019-06-25 | tweak wording | Ralf Jung | -3/+3 |
| 2019-06-25 | cleanup: rename name_from to symbol_from | Aleksey Kladov | -20/+19 |
| 2019-06-25 | Add more tests for async/await | Taylor Cramer | -0/+338 |
| 2019-06-25 | Auto merge of #62119 - Centril:rollup-el20wu0, r=Centril | bors | -356/+463 |
| 2019-06-25 | refactor lexer to use idiomatic borrowing | Aleksey Kladov | -121/+104 |