| Age | Commit message (Expand) | Author | Lines |
| 2020-05-13 | Auto merge of #70416 - mzohreva:mz/sgx-test, r=nikomatsakis | bors | -0/+32 |
| 2020-05-12 | add long error explanation for E0228 | Jade McGough | -2/+7 |
| 2020-05-12 | fix test output after rebase | Esteban Küber | -1/+1 |
| 2020-05-12 | Increase verbosity of bound restriction suggestions | Esteban Küber | -119/+207 |
| 2020-05-12 | Suggest adding super trait constraints | Esteban Küber | -9/+55 |
| 2020-05-12 | Don't `type_of` on trait assoc ty without default | Esteban Küber | -10/+48 |
| 2020-05-12 | Stabilize process_set_argv0 feature for Unix | Jeremy Fitzhardinge | -4/+0 |
| 2020-05-12 | add ui test for issue-69276 | csmoe | -0/+20 |
| 2020-05-12 | Pointer printing: do not print 0 offset | Ralf Jung | -89/+89 |
| 2020-05-12 | Add some more sanity tests and add a debug log message for it | Oliver Scherer | -0/+89 |
| 2020-05-12 | Propagate locals, even if they have unpropagatable assignments somewhere. | Oliver Scherer | -3/+12 |
| 2020-05-12 | Add a repro example for not propagating constants of partially const initiali... | Oliver Scherer | -0/+69 |
| 2020-05-12 | Rollup merge of #72128 - RalfJung:str-validity, r=oli-obk | Dylan DPC | -8/+8 |
| 2020-05-12 | Rollup merge of #71928 - mibac138:strikethrough, r=GuillaumeGomez | Dylan DPC | -0/+6 |
| 2020-05-12 | strings do not have to be valid UTF-8 any more | Ralf Jung | -8/+8 |
| 2020-05-12 | Remove ty::UnnormalizedProjection | Jack Huey | -15/+8 |
| 2020-05-11 | Modify SimplifyArmIdentity so it can trigger on mir-opt-level=1 | Wesley Wiser | -32/+717 |
| 2020-05-11 | Ignore arguments when looking for `IndexMut` for subsequent `mut` obligation | Esteban Küber | -0/+29 |
| 2020-05-11 | Rollup merge of #72067 - jonas-schievink:fuel-warn, r=varkor | Dylan DPC | -6/+10 |
| 2020-05-11 | Rollup merge of #72052 - lcnr:const_pprint, r=ecstatic-morse | Dylan DPC | -13/+13 |
| 2020-05-11 | Rollup merge of #72019 - matthewjasper:dont-skip-binder, r=davidtwco | Dylan DPC | -0/+36 |
| 2020-05-11 | Rollup merge of #72014 - GuillaumeGomez:deprecated-emoji, r=kinnison,ollie27 | Dylan DPC | -2/+2 |
| 2020-05-11 | Fix hang in lexical_region_resolve | Matthew Jasper | -0/+7 |
| 2020-05-11 | Auto merge of #71953 - oli-obk:const_prop_deaggregates, r=wesleywiser | bors | -0/+284 |
| 2020-05-11 | bless ui tests | csmoe | -2/+20 |
| 2020-05-11 | cmdline: Make target features individually overridable | Vadim Petrochenkov | -0/+9 |
| 2020-05-10 | add test case for issue-61076 | csmoe | -0/+12 |
| 2020-05-10 | Emit a warning when optimization fuel runs out | Jonas Schievink | -6/+10 |
| 2020-05-10 | Auto merge of #72074 - RalfJung:rollup-1ns58no, r=RalfJung | bors | -977/+823 |
| 2020-05-10 | rebase fallout | Ralf Jung | -5/+3 |
| 2020-05-10 | avoid raising interpreter errors from interning | Ralf Jung | -11/+23 |
| 2020-05-10 | Miri interning: replace ICEs by proper errors, make intern_shallow type signa... | Ralf Jung | -168/+127 |
| 2020-05-10 | Rollup merge of #71840 - matthewjasper:drop-trees, r=oli-obk | Ralf Jung | -977/+823 |
| 2020-05-10 | Auto merge of #71775 - petrochenkov:crtcfg, r=matthewjasper | bors | -5/+2 |
| 2020-05-10 | Auto merge of #72020 - alexcrichton:fix-incremental-linker-plugin-lto, r=oli-obk | bors | -0/+17 |
| 2020-05-09 | Fix disagreeement about CGU reuse and LTO | Alex Crichton | -0/+17 |
| 2020-05-10 | Auto merge of #71557 - matthewjasper:mir-asymmetric-or-pattern, r=oli-obk | bors | -0/+51 |
| 2020-05-10 | Add UI test where `annotated_files` count is > 1 #64205 | Juan Aguilar Santillana | -0/+107 |
| 2020-05-09 | add regression tests + improve method name | Bastian Kauschke | -0/+70 |
| 2020-05-09 | display `ConstKind::Param` | Bastian Kauschke | -13/+13 |
| 2020-05-09 | adjust tests | Ralf Jung | -176/+270 |
| 2020-05-09 | Rollup merge of #71555 - cjgillot:nameless, r=matthewjasper | Ralf Jung | -0/+1 |
| 2020-05-09 | Rollup merge of #71185 - JohnTitor:run-fail, r=petrochenkov | Ralf Jung | -140/+537 |
| 2020-05-09 | Rollup merge of #69406 - jackh726:chalk-upgrade, r=nikomatsakis | Ralf Jung | -0/+579 |
| 2020-05-09 | Bless mir-opt tests | Matthew Jasper | -974/+820 |
| 2020-05-09 | Defer creating drop trees in MIR lowering until leaving that scope | Matthew Jasper | -3/+3 |
| 2020-05-09 | Auto merge of #72036 - Dylan-DPC:rollup-ca8b0ql, r=Dylan-DPC | bors | -2/+63 |
| 2020-05-09 | Test for coercion between (FnDef | Closure) and (FnDef | Closure) | Donough Liu | -18/+431 |
| 2020-05-09 | Rollup merge of #71947 - mibac138:dead-code, r=cramertj | Dylan DPC | -2/+54 |
| 2020-05-09 | Rollup merge of #71839 - LG3696:master, r=cramertj | Dylan DPC | -0/+9 |