| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2020-02-29 | Rollup merge of #69567 - matthiaskrgr:useless_fmt, r=nagisa | Dylan DPC | -3/+3 |
| 2020-02-29 | use .to_string() instead of format!() macro to create strings | Matthias Krüger | -3/+3 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -2/+2 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -20/+20 |
| 2020-02-17 | Ensure diagnostics are printed in the correct order | Markus Westerlind | -2/+4 |
| 2020-02-17 | perf: Buffer stderr when writing json errors/warnings | Markus Westerlind | -1/+1 |
| 2020-02-11 | Auto merge of #69062 - Dylan-DPC:rollup-7wpjpqu, r=Dylan-DPC | bors | -2/+0 |
| 2020-02-11 | Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC | Dylan DPC | -2/+0 |
| 2020-02-11 | Run RustFmt | jumbatm | -1/+5 |
| 2020-02-11 | Invert control in struct_lint_level. | jumbatm | -1/+3 |
| 2020-02-09 | Auto merge of #68376 - Centril:move-ref-patterns, r=matthewjasper | bors | -1/+15 |
| 2020-02-06 | rustc_macros: don't limit the -Zmacro-backtrace suggestion to extern macros. | Eduard-Mihai Burtescu | -18/+35 |
| 2020-02-06 | rustc_errors: hide "in this macro invocation" when redundant, more explicitly. | Eduard-Mihai Burtescu | -28/+37 |
| 2020-02-06 | rustc_errors: deduplicate the -Zmacro-backtrace suggestion message. | Eduard-Mihai Burtescu | -12/+5 |
| 2020-02-06 | rustc: rename -Zexternal-macro-backtrace to -Zmacro-backtrace. | Eduard-Mihai Burtescu | -40/+26 |
| 2020-02-06 | rustc_errors: split macro backtrace rendering from <*macros> hacks. | Eduard-Mihai Burtescu | -59/+97 |
| 2020-02-04 | Remove unused feature gates from librustc_errors | bjorn3 | -2/+0 |
| 2020-02-02 | introduce `#![feature(move_ref_pattern)]` | Mazdak Farrokhzad | -1/+15 |
| 2020-01-30 | Rollup merge of #68626 - Zoxc:termize, r=estebank | Dylan DPC | -2/+2 |
| 2020-01-29 | Use termize instead of term_size | John Kåre Alsaker | -2/+2 |