| Age | Commit message (Expand) | Author | Lines |
| 2020-03-01 | use for (idx, item) in iter.enumerate() instead of manually counting loop i... | Matthias Krüger | -7/+4 |
| 2020-03-01 | use subdsec_micros() instead of subsec_nanos() / 1000 | Matthias Krüger | -1/+1 |
| 2020-03-01 | use starts_with() instead of chars().next() == Some(x) | Matthias Krüger | -1/+1 |
| 2020-03-01 | Auto merge of #69380 - Zoxc:parent-module, r=michaelwoerister | bors | -21/+25 |
| 2020-03-01 | Auto merge of #69606 - JohnTitor:rollup-i3nrrcf, r=JohnTitor | bors | -309/+368 |
| 2020-03-01 | Rollup merge of #69605 - JohnTitor:opt-def-id, r=petrochenkov | Yuki Okushi | -7/+9 |
| 2020-03-01 | Rollup merge of #69583 - LeSeulArtichaut:ice-69378, r=Centril | Yuki Okushi | -0/+18 |
| 2020-03-01 | Rollup merge of #69580 - matthiaskrgr:map_clone, r=Centril | Yuki Okushi | -27/+26 |
| 2020-03-01 | Rollup merge of #69579 - petrochenkov:noprevspan, r=Centril | Yuki Okushi | -214/+231 |
| 2020-03-01 | Rollup merge of #69562 - ecstatic-morse:dataflow-generator-discriminant, r=ol... | Yuki Okushi | -54/+72 |
| 2020-03-01 | Rollup merge of #69549 - mati865:mingw, r=kennytm | Yuki Okushi | -1/+10 |
| 2020-03-01 | Rollup merge of #69397 - tmiasko:llvm-version-suffix, r=nagisa | Yuki Okushi | -6/+2 |
| 2020-03-01 | Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandry | bors | -158/+159 |
| 2020-03-01 | Use `opt_def_id()` over `def_id()` | Yuki Okushi | -7/+9 |
| 2020-03-01 | Auto merge of #68943 - ecstatic-morse:no-useless-drop-on-enum-variants, r=mat... | bors | -15/+30 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -666/+679 |
| 2020-02-29 | Auto merge of #69590 - Dylan-DPC:rollup-i3z0sic, r=Dylan-DPC | bors | -46/+65 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -637/+650 |
| 2020-02-29 | Rollup merge of #69587 - petrochenkov:reqname, r=Centril | Dylan DPC | -3/+4 |
| 2020-02-29 | Rollup merge of #69584 - zantysor:fix-saturating-duration-since-comment, r=va... | Dylan DPC | -1/+1 |
| 2020-02-29 | Rollup merge of #69582 - RalfJung:vec-parts, r=Centril | Dylan DPC | -7/+15 |
| 2020-02-29 | Rollup merge of #69581 - RalfJung:align_to_mut, r=Centril | Dylan DPC | -1/+15 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -31/+27 |
| 2020-02-29 | Rollup merge of #69571 - matthiaskrgr:useless_asref, r=Centril | Dylan DPC | -3/+3 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -58/+58 |
| 2020-02-29 | Move directory `libsyntax` -> `librustc_ast` | Vadim Petrochenkov | -0/+0 |
| 2020-02-29 | Update src/bootstrap/dist.rs | Mateusz Mikuła | -1/+1 |
| 2020-02-29 | Auto merge of #69263 - anyska:blacklist-powerpc-zst, r=nagisa | bors | -7/+15 |
| 2020-02-29 | rustc_parse: Tweak the function parameter name check | Vadim Petrochenkov | -3/+4 |
| 2020-02-29 | Fix typo | Ralf Jung | -1/+1 |
| 2020-02-29 | use .copied() instead of .map(|x| *x) on iterators | Matthias Krüger | -27/+26 |
| 2020-02-29 | Auto merge of #69260 - GuillaumeGomez:create-E0747-error-code, r=varkor,estebank | bors | -5/+29 |
| 2020-02-29 | fix aliasing violation in align_to_mut | Ralf Jung | -1/+15 |
| 2020-02-29 | correct comment to match behavior | Zan Tysor | -1/+1 |
| 2020-02-29 | Add regression test | LeSeulArtichaut | -0/+17 |
| 2020-02-29 | Do not ICE on invalid type node | LeSeulArtichaut | -0/+1 |
| 2020-02-29 | clarify alignment requirements in Vec::from_raw_parts | Ralf Jung | -1/+5 |
| 2020-02-29 | transmute: improve Vec example | Ralf Jung | -6/+10 |
| 2020-02-29 | parser: Remove `Parser::prev_span` | Vadim Petrochenkov | -10/+12 |
| 2020-02-29 | parser: `prev_span` -> `prev_token.span` | Vadim Petrochenkov | -204/+219 |
| 2020-02-29 | Auto merge of #69570 - Dylan-DPC:rollup-d6boczt, r=Dylan-DPC | bors | -141/+152 |
| 2020-02-29 | Auto merge of #69227 - Marwes:buffer_stderr, r=varkor | bors | -3/+5 |
| 2020-02-28 | Process `RequiresStorage` results in pre-order | Dylan MacKenzie | -2/+3 |
| 2020-02-29 | Reduce visibility of `get_module_parent_node` and remove `get_module_parent` | John Kåre Alsaker | -8/+2 |
| 2020-02-29 | Add a `parent_module_from_def_id` query | John Kåre Alsaker | -14/+24 |
| 2020-02-29 | Auto merge of #69255 - estebank:e0599-details, r=varkor | bors | -158/+635 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -30/+26 |
| 2020-02-29 | don't use question mark operator on Err(), return the Result directly instead. | Matthias Krüger | -1/+1 |
| 2020-02-29 | Rollup merge of #69567 - matthiaskrgr:useless_fmt, r=nagisa | Dylan DPC | -45/+44 |
| 2020-02-29 | Rollup merge of #69563 - andre-richter:fix_no_std_match, r=Mark-Simulacrum | Dylan DPC | -1/+1 |