| Age | Commit message (Expand) | Author | Lines |
| 2020-04-26 | fix more clippy warnings | Matthias Krüger | -3/+3 |
| 2020-04-23 | librustc_middle: return LocalDefId instead of DefId in local_def_id | marmeladema | -1/+1 |
| 2020-04-19 | Make option type descriptions non-optional. | Nicholas Nethercote | -20/+5 |
| 2020-04-11 | Depend on getopts from crates.io | Luca Barbieri | -1/+1 |
| 2020-04-11 | Depend on libc from crates.io | Luca Barbieri | -2/+1 |
| 2020-04-04 | comment refers to removed type | Tshepang Lekhonkhobe | -1/+0 |
| 2020-04-02 | use direct import for ErrorReported | Mazdak Farrokhzad | -6/+3 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -18/+12 |
| 2020-03-30 | rustc -> rustc_middle part 3 (rustfmt) | Mazdak Farrokhzad | -6/+6 |
| 2020-03-30 | rustc -> rustc_middle part 2 | Mazdak Farrokhzad | -6/+6 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-24 | rustc: remove rustc_hir_pretty dependency. | Mazdak Farrokhzad | -3/+4 |
| 2020-03-24 | move rustc_hir::print -> rustc_hir_pretty | Mazdak Farrokhzad | -1/+2 |
| 2020-03-21 | Rollup merge of #69965 - mark-i-m:codegen-utils, r=eddyb | Mazdak Farrokhzad | -13/+8 |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -1/+1 |
| 2020-03-19 | Refactorings to begin getting rid of rustc_codegen_utils | Mark Mansi | -13/+8 |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -8/+9 |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -10/+10 |
| 2020-03-14 | Rollup merge of #69809 - matthiaskrgr:lifetimes, r=eddyb | Yuki Okushi | -11/+11 |
| 2020-03-14 | Rollup merge of #69802 - matthiaskrgr:cl1ppy, r=Dylan-DPC | Yuki Okushi | -6/+1 |
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -11/+11 |
| 2020-03-12 | Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbini | Mazdak Farrokhzad | -2/+2 |
| 2020-03-10 | rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org | Santiago Pastorino | -1/+1 |
| 2020-03-10 | Rename rustc guide to rustc dev guide | Santiago Pastorino | -2/+2 |
| 2020-03-10 | Rename rustc-guide to rustc-dev-guide | Santiago Pastorino | -1/+1 |
| 2020-03-08 | Rollup merge of #69608 - o01eg:expose-target-libdir-print, r=ehuss | Mazdak Farrokhzad | -0/+4 |
| 2020-03-07 | Use ?-operator in more places (clippy::question_mark, had some false negative... | Matthias Krüger | -6/+1 |
| 2020-03-02 | Auto merge of #69442 - jakevossen5:master, r=Mark-Simulacrum | bors | -6/+10 |
| 2020-03-01 | Expose target libdir information via print command. | O01eg | -0/+4 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -3/+3 |
| 2020-02-29 | added `try_find_description` to distinguish no desc from invalid code | Jake Vossen | -6/+10 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -1/+1 |
| 2020-02-28 | Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-02-27 | Remove unneeded calls to format!() | Björn Steinbrink | -1/+1 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -2/+2 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -2/+2 |
| 2020-02-12 | Rollup merge of #69059 - ljedrz:unused_stuff, r=Dylan-DPC | Dylan DPC | -4/+0 |
| 2020-02-12 | Rollup merge of #68487 - 0dvictor:nolink, r=tmandry | Yuki Okushi | -4/+36 |
| 2020-02-12 | remove some unused objects | ljedrz | -4/+0 |
| 2020-02-11 | Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC | Dylan DPC | -5/+0 |
| 2020-02-11 | Support linking from a .rlink file | Victor Ding | -4/+36 |
| 2020-02-06 | Move the `krate` method to Hir and remove the Krate dep node | John Kåre Alsaker | -3/+3 |
| 2020-02-06 | Add a Hir wrapper type | John Kåre Alsaker | -5/+5 |
| 2020-02-04 | Remove unused feature gates from librustc_driver | bjorn3 | -5/+0 |
| 2020-02-01 | pretty: injected_crate_name -> has_injected_crate | Mazdak Farrokhzad | -2/+2 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -2/+2 |
| 2020-02-01 | pretty: remove ParseSess dependency | Mazdak Farrokhzad | -10/+8 |
| 2020-01-15 | Rollup merge of #68252 - matthiaskrgr:redundant_clones, r=oli-obk | Dylan DPC | -2/+0 |
| 2020-01-15 | remove redundant clones, found by clippy | Matthias Krüger | -2/+0 |
| 2020-01-15 | Rollup merge of #68141 - euclio:replace-bindings-with-winapi, r=alexcrichton | Yuki Okushi | -13/+8 |