| Age | Commit message (Expand) | Author | Lines |
| 2019-05-21 | Remove impls for `InternedString`/string equality. | Nicholas Nethercote | -1/+1 |
| 2019-05-17 | Auto merge of #49799 - hdhoang:46205_deny_incoherent_fundamental_impls, r=nik... | bors | -5/+2 |
| 2019-05-13 | Return a `Symbol` from `name_or_empty` functions. | Nicholas Nethercote | -1/+1 |
| 2019-05-13 | Pass a `Symbol` to `check_name`, `emit_feature_err`, and related functions. | Nicholas Nethercote | -18/+19 |
| 2019-05-11 | Introduce `hir::Lit` not keeping the original token | Vadim Petrochenkov | -5/+5 |
| 2019-05-07 | Implement built-in await syntax | Taylor Cramer | -38/+5 |
| 2019-05-03 | rustc: rename hir::def::Def to Res (short for "resolution"). | Eduard-Mihai Burtescu | -15/+14 |
| 2019-05-03 | rustc: use DefKind instead of Def, where possible. | Eduard-Mihai Burtescu | -5/+5 |
| 2019-05-03 | rustc: factor most DefId-containing variants out of Def and into DefKind. | Eduard-Mihai Burtescu | -7/+7 |
| 2019-04-30 | Pull out some functors for readability | varkor | -289/+293 |
| 2019-04-30 | Refactor is_range_literal | varkor | -6/+1 |
| 2019-04-30 | Include signed integer types in the lint | varkor | -54/+88 |
| 2019-04-30 | Preserve literal suffixes | varkor | -1/+17 |
| 2019-04-30 | Place types inside backticks | varkor | -6/+6 |
| 2019-04-30 | Suggest using an inclusive range for an overflowing endpoint | varkor | -15/+61 |
| 2019-04-28 | Implement internal lints | flip1995 | -1/+3 |
| 2019-04-24 | Derive Default for EllipsisInclusiveRangePatterns | sd234678 | -9/+2 |
| 2019-04-24 | Derive Default instead of new in applicable lint | sd234678 | -7/+2 |
| 2019-04-23 | Remove visit_subpats from check_pat in favor of state in EllipsisInclusiveRan... | Tomas Koutsky | -5/+32 |
| 2019-04-21 | Change return type of `TyCtxt::is_static` to bool | Vadim Petrochenkov | -2/+1 |
| 2019-04-18 | Auto merge of #60025 - JohnTitor:rename-files, r=petrochenkov | bors | -1/+1 |
| 2019-04-17 | Rename modules | Yuki OKUSHI | -1/+1 |
| 2019-04-17 | Rename diagnostics to error_codes | Yuki OKUSHI | -0/+0 |
| 2019-04-17 | Deny `internal` in stage0 | Mateusz Mikuła | -1/+1 |
| 2019-04-16 | lint: convert incoherent_fundamental_impls into hard error | Hoàng Đức Hiếu | -5/+2 |
| 2019-04-15 | Preallocate BUILTIN_ATTRIBUTES symbols and use a hash map instead of looping | John Kåre Alsaker | -16/+30 |
| 2019-04-15 | Make check_name generic | John Kåre Alsaker | -1/+1 |
| 2019-04-14 | Rollup merge of #59858 - mark-i-m:dup-matcher-bindings-3, r=Centril | Mazdak Farrokhzad | -5/+2 |
| 2019-04-11 | Add discr_index to multi-variant layouts | Tyler Mandry | -0/+1 |
| 2019-04-10 | make duplicate matcher bindings a hard error | Mark Mansi | -5/+2 |
| 2019-04-04 | add mutable_borrow_reservation_conflict future-incompatibility lint. | Felix S. Klock II | -0/+5 |
| 2019-04-04 | Rollup merge of #59669 - Centril:lint-pass-macro, r=oli-obk | Mazdak Farrokhzad | -458/+96 |
| 2019-04-03 | reduce repetition in librustc(_lint) wrt. impl LintPass | Mazdak Farrokhzad | -458/+96 |
| 2019-04-03 | Remove TyKind arg from report_bin_hex_error function | flip1995 | -11/+6 |
| 2019-04-03 | Deny internal lints on librustc_lint | flip1995 | -8/+10 |
| 2019-04-03 | Add register_internals function to `rustc_lint` | flip1995 | -0/+16 |
| 2019-03-31 | Rollup merge of #59519 - eddyb:layout-variants-refactor, r=oli-obk | Mazdak Farrokhzad | -41/+46 |
| 2019-03-30 | Rollup merge of #59463 - pnkfelix:issue-56327-skip-dyn-keyword-lint-under-mac... | Mazdak Farrokhzad | -11/+36 |
| 2019-03-29 | rustc_target: factor out common fields of non-Single Variants. | Eduard-Mihai Burtescu | -41/+46 |
| 2019-03-29 | Rollup merge of #58019 - Zoxc:combine-late-lints, r=estebank | Mazdak Farrokhzad | -71/+114 |
| 2019-03-28 | Combine all builtin late lints | John Kåre Alsaker | -71/+114 |
| 2019-03-28 | Rollup merge of #59216 - stepnivlk:type_dependent_defs-wrappers, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2019-03-27 | Do not lint `dyn` tokens under macros. | Felix S. Klock II | -11/+36 |
| 2019-03-26 | Exclude UnusedBrokenConst from module lints | John Kåre Alsaker | -3/+5 |
| 2019-03-25 | Make more lints incremental | John Kåre Alsaker | -20/+21 |
| 2019-03-25 | Make some lints incremental | John Kåre Alsaker | -8/+45 |
| 2019-03-25 | Auto merge of #59256 - petrochenkov:derval2, r=Zoxc | bors | -4/+5 |
| 2019-03-24 | Separate variant id and variant constructor id. | David Wood | -1/+1 |
| 2019-03-23 | Auto merge of #59096 - ljedrz:HirIdify_AccessLevel, r=Zoxc | bors | -8/+4 |
| 2019-03-17 | Make meta-item API compatible with `LocalInternedString::get` soundness fix | Vadim Petrochenkov | -4/+5 |