| Age | Commit message (Expand) | Author | Lines |
| 2024-08-07 | Rollup merge of #128552 - s7tya:check-no-sanitize-attribute-pos, r=BoxyUwU | Trevor Gross | -1/+6 |
| 2024-08-06 | check_attr: treat cfg_attr like cfg | 许杰友 Jieyou Xu (Joe) | -0/+1 |
| 2024-08-05 | Emit an error for invalid use of the `#[no_sanitize]` attribute | Shina | -1/+6 |
| 2024-08-04 | check_attr: cover multi-segment attributes on specific check arms | 许杰友 Jieyou Xu (Joe) | -71/+73 |
| 2024-08-03 | Rollup merge of #128581 - jieyouxu:checked-attr, r=nnethercote | Matthias Krüger | -2/+75 |
| 2024-08-03 | Revert "Rollup merge of #125572 - mu001999-contrib:dead/enhance, r=pnkfelix" | Michael Goulet | -93/+28 |
| 2024-08-03 | Revert "Rollup merge of #126315 - mu001999-contrib:fix/126289, r=petrochenkov" | Michael Goulet | -1/+1 |
| 2024-08-03 | Revert "Rollup merge of #126618 - mu001999-contrib:dead/enhance, r=pnkfelix" | Michael Goulet | -25/+16 |
| 2024-08-03 | Revert "Rollup merge of #127107 - mu001999-contrib:dead/enhance-2, r=pnkfelix" | Michael Goulet | -12/+28 |
| 2024-08-03 | Revert "Rollup merge of #127017 - mu001999-contrib:dead/enhance, r=pnkfelix" | Michael Goulet | -22/+10 |
| 2024-08-03 | Revert "Rollup merge of #128104 - mu001999-contrib:fix/128053, r=petrochenkov" | Michael Goulet | -19/+17 |
| 2024-08-03 | Assert that all attributes are actually checked via `CheckAttrVisitor` and ar... | Oli Scherer | -2/+75 |
| 2024-07-31 | Emit an error if `#[optimize]` is applied to an incompatible item | clubby789 | -0/+30 |
| 2024-07-31 | Rollup merge of #128402 - oli-obk:checked_attrs, r=compiler-errors | Matthias Krüger | -367/+179 |
| 2024-07-30 | Rollup merge of #128380 - folkertdev:naked-compatible-doc-comment, r=bjorn3 | Matthias Krüger | -0/+6 |
| 2024-07-30 | Attribute checking simplifications | Oli Scherer | -367/+179 |
| 2024-07-30 | make `///` doc comments compatible with naked functions | Folkert | -0/+6 |
| 2024-07-29 | Rollup merge of #128104 - mu001999-contrib:fix/128053, r=petrochenkov | Matthias Krüger | -17/+19 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -52/+50 |
| 2024-07-28 | Rollup merge of #127853 - folkertdev:naked-function-error-messages, r=bjorn3 | Matthias Krüger | -41/+82 |
| 2024-07-27 | Rollup merge of #128207 - folkertdev:asm-parser-generalize, r=Amanieu | Trevor Gross | -4/+1 |
| 2024-07-27 | allow `#[target_feature]` on `#[naked]` functions | Folkert | -1/+1 |
| 2024-07-27 | switch to an allowlist approach | Folkert | -9/+46 |
| 2024-07-26 | Not lint pub structs without pub constructors if containing fields of unit, n... | mu001999 | -17/+19 |
| 2024-07-26 | Rollup merge of #127017 - mu001999-contrib:dead/enhance, r=pnkfelix | Trevor Gross | -10/+22 |
| 2024-07-25 | improve error message when `global_asm!` uses `asm!` options | Folkert | -4/+1 |
| 2024-07-25 | Rollup merge of #128138 - folkertdev:asm-option-allowlist, r=lcnr | Matthias Krüger | -12/+9 |
| 2024-07-24 | use an allow list for allowed asm options in naked functions | Folkert | -12/+9 |
| 2024-07-21 | Move all error reporting into rustc_trait_selection | Michael Goulet | -2/+2 |
| 2024-07-16 | hir: Create `hir::ConstArgKind` enum | Noah Lev | -1/+1 |
| 2024-07-16 | improve error message when `#[naked]` is used with `#[track-caller] and `#[ta... | Folkert | -14/+16 |
| 2024-07-16 | improve error message when `#[naked]` is used with `#[inline]` | Folkert | -40/+42 |
| 2024-07-10 | Report usage of lib features in ast validation | Michael Goulet | -17/+0 |
| 2024-07-08 | Move trait selection error reporting to its own top-level module | Michael Goulet | -2/+2 |
| 2024-07-05 | Rollup merge of #127107 - mu001999-contrib:dead/enhance-2, r=pnkfelix | Michael Goulet | -28/+12 |
| 2024-07-04 | Auto merge of #123781 - RalfJung:miri-fn-identity, r=oli-obk | bors | -1/+1 |
| 2024-07-04 | Improve dead code analysis | mu001999 | -28/+12 |
| 2024-07-03 | Rollup merge of #127092 - compiler-errors:rtn-dots-redux, r=estebank | Matthias Krüger | -1/+1 |
| 2024-07-03 | Auto merge of #125507 - compiler-errors:type-length-limit, r=lcnr | bors | -1/+1 |
| 2024-07-02 | Instance::resolve -> Instance::try_resolve, and other nits | Michael Goulet | -1/+1 |
| 2024-07-02 | Miri function identity hack: account for possible inlining | Ralf Jung | -1/+1 |
| 2024-07-02 | chore: remove duplicate words | hattizai | -1/+1 |
| 2024-06-29 | Rollup merge of #127118 - surechen:fix_126789, r=jieyouxu | Matthias Krüger | -3/+11 |
| 2024-06-29 | Show `used attribute`'s kind for user when find it isn't applied to a `static... | surechen | -3/+11 |
| 2024-06-28 | Revert "Rollup merge of #126938 - RalfJung:link_section, r=compiler-errors" | Rémy Rakic | -2/+10 |
| 2024-06-28 | Change RTN to use .. again | Michael Goulet | -1/+1 |
| 2024-06-27 | Extend rules of dead code analysis for impls for adts to impls for types refe... | mu001999 | -10/+22 |
| 2024-06-27 | Rollup merge of #126721 - Zalathar:nested-cov-attr, r=oli-obk | Jacob Pratt | -3/+6 |
| 2024-06-26 | Rollup merge of #126938 - RalfJung:link_section, r=compiler-errors | Matthias Krüger | -10/+2 |
| 2024-06-26 | coverage: Allow `#[coverage(..)]` on `impl` and `mod` | Zalathar | -3/+6 |