| Age | Commit message (Expand) | Author | Lines |
| 2020-05-03 | Support liveness in `rustc_peek` tests | Dylan MacKenzie | -0/+1 |
| 2020-05-03 | Rollup merge of #71314 - mibac138:cfg-version, r=petrochenkov | Dylan DPC | -0/+2 |
| 2020-05-03 | Implement RFC 2523, `#[cfg(version(..))]` | mibac138 | -0/+2 |
| 2020-05-02 | Rollup merge of #71787 - tshepang:rustdoc-warnings, r=varkor | Dylan DPC | -1/+1 |
| 2020-05-02 | fix rustdoc warnings | Tshepang Lekhonkhobe | -1/+1 |
| 2020-05-01 | Allow `#[target_feature]` on safe functions | LeSeulArtichaut | -0/+1 |
| 2020-04-27 | Rollup merge of #71263 - shlevy:FileLoader-remove-abs_path, r=Xanewok | Dylan DPC | -12/+0 |
| 2020-04-25 | Auto merge of #71439 - Mark-Simulacrum:stage0-next, r=jonas-schievink | bors | -1/+1 |
| 2020-04-25 | Bump bootstrap compiler | Mark Rousskov | -1/+1 |
| 2020-04-22 | Sort `MultiSpan`s on creation | Esteban Küber | -1/+2 |
| 2020-04-17 | Remove unused abs_path method from rustc_span::source_map::FileLoader | Shea Levy | -12/+0 |
| 2020-04-16 | Auto merge of #70831 - sfackler:shrink-future-stack, r=matthewjasper | bors | -1/+2 |
| 2020-04-13 | Fix symbol sorting | Steven Fackler | -1/+1 |
| 2020-04-12 | Rollup merge of #71053 - phansch:update_kw_sym_docs, r=Dylan-DPC | Dylan DPC | -0/+8 |
| 2020-04-12 | Rollup merge of #71048 - arlosi:normalize_ext_src, r=eddyb | Dylan DPC | -1/+59 |
| 2020-04-12 | Add some basic docs to `sym` and `kw` modules | Philipp Hansch | -0/+8 |
| 2020-04-11 | Normalize source when loading external foreign source into SourceMap | Arlo Siemsen | -1/+59 |
| 2020-04-10 | Auto merge of #70986 - marmeladema:issue70853/librustc_middle-local-def-id, r... | bors | -0/+5 |
| 2020-04-10 | librustc_middle: return LocalDefId instead of DefId in get_parent_did | marmeladema | -0/+5 |
| 2020-04-08 | Replace "rc"/"arc" lang items with Rc/Arc diagnostic items. | Eduard-Mihai Burtescu | -0/+2 |
| 2020-04-05 | Remove a stack frame from .await calls | Steven Fackler | -1/+2 |
| 2020-04-05 | Stop importing int/float modules in librustc_* | Linus Färnstrand | -1/+0 |
| 2020-04-02 | Add hash of source files in debug info | Arlo Siemsen | -19/+91 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -0/+1 |
| 2020-03-26 | pacify the merciless x.py fmt | Niko Matsakis | -35/+7 |
| 2020-03-26 | introduce `negative_impls` feature gate and document | Niko Matsakis | -7/+37 |
| 2020-03-25 | Rename `def_span` to `guess_head_span` | Esteban Küber | -1/+8 |
| 2020-03-23 | Rollup merge of #70318 - anyska:multiple-derives, r=Dylan-DPC | Mazdak Farrokhzad | -60/+10 |
| 2020-03-23 | Rollup merge of #70199 - pnkfelix:issue-68808-dont-turn-dummy-spans-into-inva... | Mazdak Farrokhzad | -0/+7 |
| 2020-03-23 | Update src/librustc_span/source_map.rs | Felix S Klock II | -1/+1 |
| 2020-03-23 | Split long derive lists into two derive attributes. | Ana-Maria Mihalache | -60/+10 |
| 2020-03-22 | Rollup merge of #70229 - matthiaskrgr:cl3ppy, r=Mark-Simulacrum | Dylan DPC | -4/+4 |
| 2020-03-22 | Rollup merge of #70172 - eddyb:retokenize-external-src, r=petrochenkov | Dylan DPC | -3/+3 |
| 2020-03-21 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -4/+4 |
| 2020-03-21 | Rollup merge of #69901 - RalfJung:rustc_layout, r=eddyb | Dylan DPC | -0/+1 |
| 2020-03-21 | Rollup merge of #70187 - matthiaskrgr:cl2ppy, r=Mark-Simulacrum | Mazdak Farrokhzad | -14/+8 |
| 2020-03-21 | Rollup merge of #69033 - jonas-schievink:resume-with-context, r=tmandry | Mazdak Farrokhzad | -1/+2 |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -14/+8 |
| 2020-03-20 | Revised span-to-lines conversion to produce an empty vec on DUMMY_SP. | Felix S. Klock II | -0/+7 |
| 2020-03-20 | add debug option to #[rustc_layout] | Ralf Jung | -0/+1 |
| 2020-03-20 | parse/lexer: support `StringReader::retokenize` called on external files. | Eduard-Mihai Burtescu | -3/+3 |
| 2020-03-19 | rustc: use LocalDefId instead of DefIndex in HirId. | Eduard-Mihai Burtescu | -1/+12 |
| 2020-03-19 | rustc: introduce DefId::as_local(self) -> Option<LocalDefId> and use it. | Eduard-Mihai Burtescu | -2/+6 |
| 2020-03-19 | rustc: rename DefId::to_local to expect_local and use it instead of LocalDefI... | Eduard-Mihai Burtescu | -8/+3 |
| 2020-03-19 | rustc: make LocalDefId's index field public like DefId's is. | Eduard-Mihai Burtescu | -3/+5 |
| 2020-03-18 | Properly handle Spans that reference imported SourceFiles | Aaron Hill | -24/+49 |
| 2020-03-18 | Rollup merge of #69899 - ecstatic-morse:const-idx-methods, r=oli-obk | Mazdak Farrokhzad | -2/+5 |
| 2020-03-17 | Make async/await lowering use resume arguments | Jonas Schievink | -1/+2 |
| 2020-03-17 | Add requisite feature gates for const assert | Dylan MacKenzie | -0/+3 |