| Age | Commit message (Expand) | Author | Lines |
| 2022-07-28 | Remove guess_head_span. | Camille GILLOT | -5/+1 |
| 2022-07-28 | change the type of `note` field to `Option<String>` | Takayuki Maeda | -17/+14 |
| 2022-07-26 | Rollup merge of #99729 - cjgillot:rm-unused-tuple, r=michaelwoerister | Matthias Krüger | -1/+1 |
| 2022-07-25 | Unused tuple fields in rustc_resolve. | Camille GILLOT | -1/+1 |
| 2022-07-25 | avoid `&str`/`Symbol` to `String` conversions | Takayuki Maeda | -2/+1 |
| 2022-07-21 | Rollup merge of #99528 - matthiaskrgr:2022_07_perf, r=estebank | Matthias Krüger | -1/+1 |
| 2022-07-20 | clippy::perf fixes | Matthias Krüger | -1/+1 |
| 2022-07-20 | avoid `&str` to String conversions | Takayuki Maeda | -2/+2 |
| 2022-07-19 | Rollup merge of #99401 - TaKO8Ki:avoid-symbol-to-&str-conversions, r=nnethercote | Matthias Krüger | -1/+1 |
| 2022-07-18 | avoid `Symbol` to `&str` conversions | Takayuki Maeda | -1/+1 |
| 2022-07-13 | avoid `&str` to `String` conversions | Takayuki Maeda | -2/+2 |
| 2022-07-11 | Rollup merge of #99140 - TaKO8Ki:implement-is-accessible-span, r=fee1-dead | Dylan DPC | -1/+1 |
| 2022-07-11 | rename a method | Takayuki Maeda | -1/+1 |
| 2022-07-11 | implement `is_accessible_span` | Takayuki Maeda | -1/+1 |
| 2022-07-10 | Rollup merge of #99103 - TaKO8Ki:avoid-&str-to-string-conversions, r=oli-obk | Matthias Krüger | -4/+1 |
| 2022-07-10 | avoid some `&str` to `String` conversions | Takayuki Maeda | -4/+1 |
| 2022-07-09 | Rollup merge of #99008 - obeis:issue-98974, r=compiler-errors | Dylan DPC | -4/+19 |
| 2022-07-08 | Update ui test for the new E0530 suggestion | Obei Sideg | -2/+1 |
| 2022-07-08 | Check if E0530 is `rustc_resolve::late::PatternSource::Match` to emit suggestion | Obei Sideg | -5/+8 |
| 2022-07-08 | Check if E0530 is `tuple variant` or `tuple struct` to emit suggestion | Obei Sideg | -8/+14 |
| 2022-07-07 | Adding suggestion for E0530 | Obei Sideg | -0/+7 |
| 2022-07-07 | suggest adding a derive for #[default] applied to variants | Deadbeef | -4/+10 |
| 2022-07-05 | fix typo in note about multiple inaccessible type aliases | ClementTsang | -1/+3 |
| 2022-07-04 | suggest `#[derive(Default)]` to enums with `#[default]` | Takayuki Maeda | -0/+9 |
| 2022-06-29 | avoid many `&str` to `String` conversions with `MultiSpan::push_span_label` | Takayuki Maeda | -1/+1 |
| 2022-06-19 | Mention what item is using an invalid `Self` type | Michael Goulet | -0/+2 |
| 2022-06-14 | Separate `source_span` and `expn_that_defined` from `Definitions`. | Camille GILLOT | -10/+11 |
| 2022-06-13 | remove unnecessary `to_string` and `String::new` for `tool_only_span_suggestion` | Takayuki Maeda | -7/+2 |
| 2022-06-13 | remove unnecessary `to_string` and `String::new` | Takayuki Maeda | -12/+7 |
| 2022-06-01 | Rollup merge of #97264 - TaKO8Ki:suggest-extern-crate-when-failing-to-resolve... | Matthias Krüger | -3/+12 |
| 2022-05-25 | suggest `extern crate foo` when failing to resolve `use foo` | Takayuki Maeda | -3/+12 |
| 2022-05-20 | Remove `crate` visibility usage in compiler | Jacob Pratt | -20/+20 |
| 2022-05-12 | Auto merge of #96150 - est31:unused_macro_rules, r=petrochenkov | bors | -0/+14 |
| 2022-05-07 | Auto merge of #96094 - Elliot-Roberts:fix_doctests, r=compiler-errors | bors | -13/+13 |
| 2022-05-05 | Implement the unused_macro_rules lint | est31 | -0/+14 |
| 2022-05-03 | Tweak wording | Esteban Kuber | -5/+4 |
| 2022-05-03 | When suggesting to import an item, also suggest changing the path if appropriate | Esteban Küber | -4/+17 |
| 2022-05-02 | fix most compiler/ doctests | Elliot Roberts | -13/+13 |
| 2022-05-02 | rustc: Panic by default in `DefIdTree::parent` | Vadim Petrochenkov | -2/+2 |
| 2022-05-01 | resolve: Rename `unusable_binding` to `ignore_binding` | Vadim Petrochenkov | -5/+5 |
| 2022-05-01 | resolve: Merge `last_import_segment` into `Finalize` | Vadim Petrochenkov | -3/+0 |
| 2022-05-01 | resolve: Turn `enum Finalize` into an optional struct | Vadim Petrochenkov | -11/+8 |
| 2022-04-30 | Use newtype `enum`s instead of `bool` | Esteban Kuber | -21/+43 |
| 2022-04-30 | When encountering a binding that could be a const or unit variant, suggest th... | Esteban Kuber | -19/+71 |
| 2022-04-21 | Remove redundant `format!`s | Nixon Enraght-Moony | -1/+1 |
| 2022-04-17 | Stop using CRATE_DEF_INDEX. | Camille GILLOT | -2/+2 |
| 2022-04-14 | Reimplement lowering of sym operands for asm! so that it also works with glob... | Amanieu d'Antras | -0/+6 |
| 2022-04-12 | Rollup merge of #95405 - cjgillot:probe, r=petrochenkov | Dylan DPC | -18/+660 |
| 2022-04-12 | Move diagnostic methods to the dedicated module. | Camille GILLOT | -12/+468 |
| 2022-04-12 | Simplify error reporting. | Camille GILLOT | -84/+76 |