| Age | Commit message (Expand) | Author | Lines |
| 2020-02-04 | Rollup merge of #68818 - matthiaskrgr:misc_perf, r=Mark-Simulacrum | Dylan DPC | -15/+5 |
| 2020-02-04 | Rollup merge of #68815 - matthiaskrgr:redundant_imports, r=alexcrichton | Dylan DPC | -36/+0 |
| 2020-02-04 | Rollup merge of #68810 - ollie27:once_with_copy, r=Dylan-DPC | Dylan DPC | -1/+1 |
| 2020-02-04 | Rollup merge of #68805 - matthiaskrgr:cleanup_bootstrap, r=Mark-Simulacrum | Dylan DPC | -57/+40 |
| 2020-02-04 | Rollup merge of #68758 - daboross:fix-59191, r=petrochenkov | Dylan DPC | -1/+52 |
| 2020-02-04 | Rollup merge of #68282 - tmiasko:sanitizer-example, r=steveklabnik | Dylan DPC | -2/+10 |
| 2020-02-04 | Auto merge of #68377 - estebank:fn-obligations-spans, r=oli-obk | bors | -835/+1428 |
| 2020-02-04 | Auto merge of #68708 - Mark-Simulacrum:stage0-step, r=pietroalbini | bors | -86/+19 |
| 2020-02-04 | Drop unused extern crates | Mark Rousskov | -2/+0 |
| 2020-02-04 | Auto merge of #68804 - ecstatic-morse:qualif-cursor-lazy, r=estebank | bors | -53/+36 |
| 2020-02-04 | Auto merge of #68601 - 0dvictor:split, r=tmandry | bors | -28/+55 |
| 2020-02-04 | fix couple of perf related clipyp warnings | Matthias Krüger | -15/+5 |
| 2020-02-04 | Split `join_codegen_and_link()` into two steps | Victor Ding | -28/+55 |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -36/+0 |
| 2020-02-03 | Remove Copy impl from OnceWith | Oliver Middleton | -1/+1 |
| 2020-02-03 | Auto merge of #67668 - matthewjasper:or-patterns, r=pnkfelix | bors | -894/+1737 |
| 2020-02-03 | Avoid scheduling repeated `StorageDead`s | Matthew Jasper | -15/+52 |
| 2020-02-03 | Make use of `Place: Copy` | Matthew Jasper | -42/+34 |
| 2020-02-03 | Apply suggestions from code review | matthewjasper | -6/+5 |
| 2020-02-03 | Address review comments | Matthew Jasper | -96/+143 |
| 2020-02-03 | Make `Candidate` private | Matthew Jasper | -7/+10 |
| 2020-02-03 | Add more tests for or-patterns | Matthew Jasper | -0/+474 |
| 2020-02-03 | bootstrap: fix clippy warnings | Matthias Krüger | -58/+41 |
| 2020-02-03 | Change wording for object unsafe because of assoc const | Esteban Küber | -12/+10 |
| 2020-02-03 | Treat `Rvalue::AddressOf` the same as `Rvalue::Ref` | Dylan MacKenzie | -18/+11 |
| 2020-02-03 | Eliminate "eager" qualif getter | Dylan MacKenzie | -22/+6 |
| 2020-02-03 | Pass correct closure type to `Qualif` methods | Dylan MacKenzie | -5/+11 |
| 2020-02-03 | Take `FnMut` instead of `Fn` in `Qualif` methods | Dylan MacKenzie | -10/+10 |
| 2020-02-03 | Rollup merge of #68800 - JohnTitor:stabilize-once-with, r=Centril | Dylan DPC | -14/+8 |
| 2020-02-03 | Rollup merge of #68798 - Centril:caller-loc-ctfe-rt-equiv, r=RalfJung | Dylan DPC | -0/+38 |
| 2020-02-03 | Rollup merge of #68797 - GuillaumeGomez:link-to-types, r=Dylan-DPC | Dylan DPC | -2/+2 |
| 2020-02-03 | Rollup merge of #68787 - amosonn:patch-1, r=nagisa | Dylan DPC | -16/+22 |
| 2020-02-03 | Rollup merge of #68777 - GuillaumeGomez:clean-up-e0263, r=Dylan-DPC | Dylan DPC | -4/+13 |
| 2020-02-03 | Rollup merge of #68744 - JohnTitor:fix-ice-save-analysis, r=cramertj | Dylan DPC | -4/+35 |
| 2020-02-03 | Rollup merge of #68711 - hman523:fix-68593, r=Dylan-DPC | Dylan DPC | -1/+4 |
| 2020-02-03 | Rollup merge of #68678 - Mark-Simulacrum:robots, r=pietroalbini | Dylan DPC | -1/+1 |
| 2020-02-04 | Stabilize `core::iter::once_with()` | Yuki Okushi | -14/+8 |
| 2020-02-03 | track_caller test caller_location ctfe/rt equivalence wrt. fnptrs | Mazdak Farrokhzad | -0/+38 |
| 2020-02-03 | Fix links to types instead of modules | Guillaume Gomez | -2/+2 |
| 2020-02-03 | Auto merge of #68665 - eddyb:debuginfo-early-create-var, r=nagisa | bors | -94/+209 |
| 2020-02-03 | rustc_codegen_llvm: avoid redundant calls to span_start. | Eduard-Mihai Burtescu | -4/+4 |
| 2020-02-03 | rustc_codegen_ssa: convert mir::VarDebugInfo into a custom PerLocalVarDebugInfo. | Eduard-Mihai Burtescu | -54/+133 |
| 2020-02-03 | rustc_codegen_ssa: split declare_local into create_dbg_var and dbg_var_addr. | Eduard-Mihai Burtescu | -43/+79 |
| 2020-02-03 | Auto merge of #68778 - RalfJung:raw-addr-of, r=eddyb | bors | -1/+58 |
| 2020-02-03 | Auto merge of #68772 - matthewjasper:relate-opt, r=davidtwco | bors | -2/+42 |
| 2020-02-02 | Change expansion error to be non-fatal | David | -3/+15 |
| 2020-02-03 | Auto merge of #68756 - JohnTitor:fix-ice-save-analysis-2, r=davidtwco | bors | -3/+5 |
| 2020-02-03 | Auto merge of #68735 - JohnTitor:fix-ice-0202, r=estebank | bors | -2/+2 |
| 2020-02-03 | Optimize core::ptr::align_offset | Amos Onn | -2/+1 |
| 2020-02-03 | Optimize core::ptr::align_offset | Amos Onn | -13/+20 |