| Age | Commit message (Expand) | Author | Lines |
| 2020-07-31 | Move from `log` to `tracing` | Oliver Scherer | -1/+1 |
| 2020-07-16 | apply bootstrap cfgs | Mark Rousskov | -1/+0 |
| 2020-07-09 | Rollup merge of #74079 - nnethercote:session-globals, r=nikomatsakis | Manish Goregaokar | -4/+4 |
| 2020-07-09 | Eliminate confusing "globals" terminology. | Nicholas Nethercote | -4/+4 |
| 2020-07-08 | Fix librustc_errors unit tests. | Eric Huss | -0/+1 |
| 2020-06-30 | Stabilize `#[track_caller]`. | Adam Perry | -1/+1 |
| 2020-06-27 | Rollup merge of #73763 - davidtwco:terminal-width-json-emitter, r=estebank | Manish Goregaokar | -1/+14 |
| 2020-06-26 | errors: use `-Z terminal-width` in JSON emitter | David Wood | -1/+14 |
| 2020-06-25 | emitter: column width defaults to 140 | David Wood | -3/+7 |
| 2020-06-15 | track caller for delay_span_bug | mark | -0/+4 |
| 2020-06-15 | Rollup merge of #72740 - estebank:recursive-indirection, r=matthewjasper | Ralf Jung | -0/+36 |
| 2020-06-11 | Rollup merge of #73169 - Amanieu:asm-warnings, r=petrochenkov | Dylan DPC | -0/+5 |
| 2020-06-10 | On recursive ADT, provide indirection structured suggestion | Esteban Küber | -0/+36 |
| 2020-06-09 | Fix more clippy warnings | Matthias Krüger | -6/+2 |
| 2020-06-09 | Handle assembler warnings properly | Amanieu d'Antras | -0/+5 |
| 2020-06-08 | Rollup merge of #72026 - botika:master, r=estebank | Ralf Jung | -124/+93 |
| 2020-06-02 | Make things build again | Vadim Petrochenkov | -1/+1 |
| 2020-05-27 | Fix spacing of expected/found notes without a label | Esteban Küber | -3/+12 |
| 2020-05-16 | Fix make sure out primary file comes first | Juan Aguilar Santillana | -2/+13 |
| 2020-05-08 | Update annotate-snippets-rs to 0.8.0 | Juan Aguilar Santillana | -124/+82 |
| 2020-05-04 | Simplify the error Registry methods a little | Josh Stone | -6/+3 |
| 2020-04-28 | Rollup merge of #71489 - spastorino:fix-treat-err-as-bug-handling, r=eddyb | Dylan DPC | -1/+4 |
| 2020-04-27 | Fix off by one error for delay_span_bug | Santiago Pastorino | -1/+4 |
| 2020-04-24 | Replace filter_map().next() calls with find_map() | Josh Stone | -13/+10 |
| 2020-04-16 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -1/+1 |
| 2020-04-12 | fix issue 69130 | David Renshaw | -1/+4 |
| 2020-04-11 | rustc: Add a warning count upon completion | RoccoDev | -3/+24 |
| 2020-04-07 | Use assoc integer constants in librustc_* | Linus Färnstrand | -5/+5 |
| 2020-04-06 | Rollup merge of #70519 - estebank:constraints-before-args-spans, r=Centril | Mazdak Farrokhzad | -0/+14 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -22/+16 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-29 | Suggest correct order for arguments when encountering early constraints | Esteban Küber | -0/+14 |
| 2020-03-26 | introduce `negative_impls` feature gate and document | Niko Matsakis | -2/+2 |
| 2020-03-23 | Rollup merge of #70199 - pnkfelix:issue-68808-dont-turn-dummy-spans-into-inva... | Mazdak Farrokhzad | -4/+4 |
| 2020-03-22 | remove redundant closures (clippy::redundant_closure) | Matthias Krüger | -1/+1 |
| 2020-03-20 | Revised span-to-lines conversion to produce an empty vec on DUMMY_SP. | Felix S. Klock II | -4/+4 |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -1/+1 |
| 2020-03-10 | rustc_errors: Use ensure_source_file_source_present where necessary. | Ana-Maria Mihalache | -1/+15 |
| 2020-03-10 | Store `TokenStream` in `rmeta::MacroDef`. | Mazdak Farrokhzad | -8/+8 |
| 2020-03-04 | Use single-char patter on {ends,starts}_with and remove clone on copy type. | Matthias Krüger | -1/+1 |
| 2020-03-04 | Don't use "if let" bindings to only check a value and not actually bind anyth... | Matthias Krüger | -1/+1 |
| 2020-03-03 | Rollup merge of #69628 - nnethercote:fix-DiagnosticBuilder-into_diagnostic-le... | Yuki Okushi | -6/+5 |
| 2020-03-03 | Rollup merge of #69619 - matthiaskrgr:misc, r=eddyb | Yuki Okushi | -3/+2 |
| 2020-03-02 | Rollup merge of #69623 - Centril:fix-69396-tmp, r=petrochenkov | Dylan DPC | -14/+4 |
| 2020-03-02 | Fix a leak in `DiagnosticBuilder::into_diagnostic`. | Nicholas Nethercote | -6/+5 |
| 2020-03-02 | stash API: remove panic to fix ICE. | Mazdak Farrokhzad | -14/+4 |
| 2020-03-01 | use for (idx, item) in iter.enumerate() instead of manually counting loop i... | Matthias Krüger | -3/+2 |
| 2020-02-29 | added `try_find_description` to distinguish no desc from invalid code | Jake Vossen | -9/+29 |
| 2020-02-29 | Auto merge of #69570 - Dylan-DPC:rollup-d6boczt, r=Dylan-DPC | bors | -5/+5 |
| 2020-02-29 | Auto merge of #69227 - Marwes:buffer_stderr, r=varkor | bors | -3/+5 |