| Age | Commit message (Expand) | Author | Lines |
| 2019-08-02 | Replace "existential" by "opaque" | varkor | -1/+1 |
| 2019-08-02 | librustc_incremental: Unconfigure tests during normal build | Vadim Petrochenkov | -64/+68 |
| 2019-07-28 | Deny `unused_lifetimes` through rustbuild | Vadim Petrochenkov | -2/+0 |
| 2019-07-28 | Remove lint annotations in specific crates that are already enforced by rustb... | Vadim Petrochenkov | -1/+0 |
| 2019-07-23 | cleanup: Remove `extern crate serialize as rustc_serialize`s | Vadim Petrochenkov | -4/+1 |
| 2019-07-20 | normalize use of backticks in compiler messages for librustc_incremental | Samy Kacimi | -5/+5 |
| 2019-07-07 | rustc: Remove `dylib` crate type from most rustc crates | Alex Crichton | -1/+1 |
| 2019-07-05 | Rollup merge of #62168 - ljedrz:the_culmination_of_hiridification, r=Zoxc | Mazdak Farrokhzad | -2/+2 |
| 2019-07-05 | Rollup merge of #61545 - flip1995:internal_lints, r=oli-obk | Mazdak Farrokhzad | -1/+0 |
| 2019-07-04 | rename hir::map::local_def_id_from_hir_id to local_def_id | ljedrz | -2/+2 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -4/+4 |
| 2019-07-03 | Remove needless lifetimes | Jeremy Stucki | -2/+2 |
| 2019-06-24 | Enable internal lints in bootstrap | flip1995 | -1/+0 |
| 2019-06-20 | rename hir::map::get_by_hir_id to get | ljedrz | -1/+1 |
| 2019-06-14 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -5/+1 |
| 2019-06-14 | Unify all uses of 'gcx and 'tcx. | Eduard-Mihai Burtescu | -15/+15 |
| 2019-06-12 | Run `rustfmt --file-lines ...` for changes from previous commits. | Eduard-Mihai Burtescu | -8/+7 |
| 2019-06-12 | rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -15/+15 |
| 2019-06-12 | Fix fallout from `deny(unused_lifetimes)`. | Eduard-Mihai Burtescu | -6/+6 |
| 2019-06-12 | rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`. | Eduard-Mihai Burtescu | -23/+22 |
| 2019-06-11 | rustc_incremental: deny(unused_lifetimes). | Eduard-Mihai Burtescu | -2/+3 |
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -10/+12 |
| 2019-04-17 | Deny `internal` in stage0 | Mateusz Mikuła | -1/+1 |
| 2019-04-15 | Make check_name generic | John Kåre Alsaker | -1/+1 |
| 2019-04-04 | Auto merge of #59517 - Zoxc:new-queries, r=oli-obk | bors | -13/+13 |
| 2019-04-03 | Deny internal lints on non conflicting crates | flip1995 | -0/+1 |
| 2019-03-30 | Update tests | John Kåre Alsaker | -2/+2 |
| 2019-03-30 | Move query definitions over to the proc macro | John Kåre Alsaker | -11/+11 |
| 2019-03-26 | fix: Make incremental artifact deletion more robust | Markus Westerlind | -1/+4 |
| 2019-03-26 | Rollup merge of #59315 - Zoxc:move-query, r=oli-obk | Mazdak Farrokhzad | -3/+3 |
| 2019-03-25 | Auto merge of #59256 - petrochenkov:derval2, r=Zoxc | bors | -2/+2 |
| 2019-03-20 | Add no_hash to query macro and move some queries over | John Kåre Alsaker | -3/+3 |
| 2019-03-18 | Add load_cached query modifier and keep dep node names consistent with query ... | John Kåre Alsaker | -11/+11 |
| 2019-03-18 | Define queries using a proc macro | John Kåre Alsaker | -4/+4 |
| 2019-03-17 | Make meta-item API compatible with `LocalInternedString::get` soundness fix | Vadim Petrochenkov | -2/+2 |
| 2019-03-16 | Refactor away `NestedMetaItemKind` | Vadim Petrochenkov | -5/+5 |
| 2019-03-16 | syntax: Do not accidentally treat multi-segment meta-items as single-segment | Vadim Petrochenkov | -4/+4 |
| 2019-03-15 | rustc: rename item_path to def_path (except the module in ty). | Eduard-Mihai Burtescu | -2/+2 |
| 2019-03-13 | Rollup merge of #59093 - Zoxc:no-prealloc, r=michaelwoerister | Mazdak Farrokhzad | -1/+0 |
| 2019-03-13 | Rollup merge of #58908 - JohnTitor:improve-rand, r=scottmcm | Mazdak Farrokhzad | -1/+1 |
| 2019-03-11 | Remove precompute_in_scope_traits_hashes | John Kåre Alsaker | -1/+0 |
| 2019-03-10 | Make the rustc driver and interface demand driven | John Kåre Alsaker | -5/+5 |
| 2019-03-04 | Update rand version | Yuki Okushi | -1/+1 |
| 2019-03-01 | hir: remove NodeId from TraitItem | ljedrz | -18/+18 |
| 2019-02-10 | rustc: doc comments | Alexander Regueiro | -18/+17 |
| 2019-02-10 | Auto merge of #57770 - Zoxc:no-hash-query, r=michaelwoerister | bors | -2/+2 |
| 2019-02-09 | Rollup merge of #58261 - taiki-e:librustc_incremental-2018, r=Centril | Mazdak Farrokhzad | -32/+29 |
| 2019-02-08 | librustc_incremental => 2018 | Taiki Endo | -32/+29 |
| 2019-02-08 | Update tests | John Kåre Alsaker | -2/+2 |
| 2019-02-07 | Remove images' url to make it work even without internet connection | Guillaume Gomez | -3/+1 |