diff options
| author | Jana Dönszelmann <jonathan@donsz.nl> | 2025-07-03 13:29:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-03 13:29:36 +0200 |
| commit | 5026d0cd8e45d2c882d1161edcb6c40e97c87a1a (patch) | |
| tree | d561b00af759a4764087e1f9dae43dc19b930d16 /compiler/rustc_parse/src/validate_attr.rs | |
| parent | f6d37a25a96fd2c20f4349474d81bbb35e2ecba3 (diff) | |
| parent | 3d5d72b76105056af5886cbad4661a26f9409b8e (diff) | |
| download | rust-5026d0cd8e45d2c882d1161edcb6c40e97c87a1a.tar.gz rust-5026d0cd8e45d2c882d1161edcb6c40e97c87a1a.zip | |
Rollup merge of #142876 - JonathanBrouwer:target_feature_parser, r=oli-obk
Port `#[target_feature]` to new attribute parsing infrastructure Ports `target_feature` to the new attribute parsing infrastructure for https://github.com/rust-lang/rust/issues/131229#issuecomment-2971353197 r? ``@jdonszelmann``
Diffstat (limited to 'compiler/rustc_parse/src/validate_attr.rs')
| -rw-r--r-- | compiler/rustc_parse/src/validate_attr.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_parse/src/validate_attr.rs b/compiler/rustc_parse/src/validate_attr.rs index 6c2c571d240..4d64cdeb69a 100644 --- a/compiler/rustc_parse/src/validate_attr.rs +++ b/compiler/rustc_parse/src/validate_attr.rs @@ -298,6 +298,8 @@ fn emit_malformed_attribute( | sym::deprecated | sym::optimize | sym::cold + | sym::target_feature + | sym::rustc_allow_const_fn_unstable | sym::naked | sym::no_mangle | sym::must_use |
