| Age | Commit message (Expand) | Author | Lines |
| 2018-07-23 | Let mir reference lifetime be inferred | Santiago Pastorino | -2/+2 |
| 2018-07-23 | Let lifetimes on find be inferred | Santiago Pastorino | -4/+4 |
| 2018-07-23 | Remove unused lifetime annotation | Santiago Pastorino | -1/+1 |
| 2018-07-23 | gcx outlives tcx which outlives a, no need to explicitly do gcx: a | Santiago Pastorino | -1/+1 |
| 2018-07-23 | Remove duplicated report word in docs | Santiago Pastorino | -1/+1 |
| 2018-07-23 | Auto merge of #52612 - matthewjasper:remove-unnecessary-flow, r=nikomatsakis | bors | -19/+1 |
| 2018-07-23 | Auto merge of #52571 - oli-obk:promotion_abort, r=nagisa | bors | -3/+46 |
| 2018-07-23 | Auto merge of #52568 - oli-obk:span_bug_error, r=varkor | bors | -46/+151 |
| 2018-07-22 | Auto merge of #52564 - pnkfelix:issue-52126-lhs-of-assign-op-is-invariant, r=... | bors | -12/+107 |
| 2018-07-22 | Auto merge of #52069 - zackmdavis:elided_states_of_america—and_to_the_re-pu... | bors | -53/+324 |
| 2018-07-22 | Auto merge of #52616 - kennytm:rollup, r=kennytm | bors | -107/+160 |
| 2018-07-23 | Rollup merge of #52051 - scottmcm:swap-directly, r=alexcrichton | kennytm | -1/+41 |
| 2018-07-23 | Rollup merge of #52594 - Mark-Simulacrum:error-index-stage0, r=alexcrichton | kennytm | -2/+2 |
| 2018-07-23 | Rollup merge of #52587 - csmoe:doc, r=kennytm | kennytm | -1/+1 |
| 2018-07-23 | Rollup merge of #52582 - felixrabe:patch-2, r=pietroalbini | kennytm | -1/+1 |
| 2018-07-23 | Rollup merge of #52581 - petrochenkov:bmacrodoc, r=alexcrichton | kennytm | -58/+43 |
| 2018-07-22 | Auto merge of #52572 - davidtwco:issue-51027, r=nikomatsakis | bors | -157/+367 |
| 2018-07-22 | in which the elided-lifetimes-in-paths lint undergoes a revolution | Zack M. Davis | -53/+324 |
| 2018-07-22 | Rollup merge of #52521 - ehuss:rustdoc-passes-doc, r=kennytm | kennytm | -2/+2 |
| 2018-07-22 | Rollup merge of #52508 - joshtriplett:dangling-not-sentinel, r=Mark-Simulacrum | kennytm | -0/+10 |
| 2018-07-22 | Rollup merge of #52507 - estebank:infer-type, r=nikomatsakis | kennytm | -17/+24 |
| 2018-07-22 | Rollup merge of #52465 - sekineh:add-ci-thumb, r=alexcrichton | kennytm | -2/+11 |
| 2018-07-22 | Rollup merge of #51807 - newpavlov:deprecate_str_slice, r=alexcrichton | kennytm | -23/+25 |
| 2018-07-22 | Use correct exclusion comment | Oliver Schneider | -1/+2 |
| 2018-07-22 | Fallback to general error handling in ICE cases. | David Wood | -41/+60 |
| 2018-07-22 | Modified how constraint classification happens to upvars, can now handle func... | David Wood | -11/+20 |
| 2018-07-22 | Improved is_upvar_field_projection - no longer need recurse parameter. | David Wood | -19/+21 |
| 2018-07-22 | Improved documentation of functions in new module. | David Wood | -11/+17 |
| 2018-07-22 | Improved closure errors. | David Wood | -131/+299 |
| 2018-07-22 | Classify aggregate rvalues as assignments. | David Wood | -8/+14 |
| 2018-07-22 | Auto merge of #52368 - GuillaumeGomez:intra_doc_link_resolution_failure-docum... | bors | -4/+102 |
| 2018-07-22 | Don't keep the possibly init flow around longer than needed | Matthew Jasper | -19/+1 |
| 2018-07-22 | Auto merge of #52359 - matthewjasper:combine-move-error-reporting, r=pnkfelix | bors | -88/+101 |
| 2018-07-22 | Auto merge of #52394 - estebank:println, r=oli-obk | bors | -123/+351 |
| 2018-07-21 | Only run the test on x86_64 | Scott McMurray | -0/+1 |
| 2018-07-21 | Don't use SIMD in mem::swap for types smaller than the block size | Scott McMurray | -1/+40 |
| 2018-07-21 | fix test | Esteban Küber | -2/+2 |
| 2018-07-22 | Auto merge of #52250 - nnethercote:no-SparseBitMatrix, r=nikomatsakis | bors | -212/+37 |
| 2018-07-21 | fix tidy ~ again | Esteban Küber | -13/+0 |
| 2018-07-21 | Don't use the new `eprintln` for stage0 and stage1 | Esteban Küber | -2/+2 |
| 2018-07-21 | Fix tidy by adding new feature gate test | Esteban Küber | -0/+24 |
| 2018-07-21 | fix logic bug | Esteban Küber | -2/+2 |
| 2018-07-21 | Auto merge of #51485 - estebank:dehighlight-secondary-msgs, r=GuillaumeGomez | bors | -4/+11 |
| 2018-07-21 | Remove dependency on `libsyntax` | Esteban Küber | -23/+13 |
| 2018-07-21 | Change `eprintln!()` | Esteban Küber | -2/+9 |
| 2018-07-21 | Gate `format_args_nll` behind feature flag | Esteban Küber | -1/+21 |
| 2018-07-22 | Add "self" intra-link support | Guillaume Gomez | -4/+102 |
| 2018-07-21 | Run the error index tool against the sysroot libdir | Mark Rousskov | -2/+2 |
| 2018-07-21 | Auto merge of #52115 - Dylan-DPC:feature/nll-liveness-regions, r=nikomatsakis | bors | -357/+302 |
| 2018-07-21 | don't spawn processes on wasm | Oliver Schneider | -0/+2 |