Skip to content

Commit 3db8b26

Browse files
committed
Auto merge of #119474 - nbdd0121:naked, r=Nilstrieb
Update tracking issue of naked_functions The original tracking issue #32408 was superseded by the new one #90957 (constrainted naked functions) and therefore is closed.
2 parents e51e98d + 86bd81f commit 3db8b26

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_feature/src/unstable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ declare_features! (
525525
/// Allows the `#[must_not_suspend]` attribute.
526526
(unstable, must_not_suspend, "1.57.0", Some(83310)),
527527
/// Allows using `#[naked]` on functions.
528-
(unstable, naked_functions, "1.9.0", Some(32408)),
528+
(unstable, naked_functions, "1.9.0", Some(90957)),
529529
/// Allows specifying the as-needed link modifier
530530
(unstable, native_link_modifiers_as_needed, "1.53.0", Some(81490)),
531531
/// Allow negative trait implementations.

tests/ui/feature-gates/feature-gate-naked_functions.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
44
LL | #[naked]
55
| ^^^^^^^^
66
|
7-
= note: see issue #32408 <https://github.com/rust-lang/rust/issues/32408> for more information
7+
= note: see issue #90957 <https://github.com/rust-lang/rust/issues/90957> for more information
88
= help: add `#![feature(naked_functions)]` to the crate attributes to enable
99

1010
error[E0658]: the `#[naked]` attribute is an experimental feature
@@ -13,7 +13,7 @@ error[E0658]: the `#[naked]` attribute is an experimental feature
1313
LL | #[naked]
1414
| ^^^^^^^^
1515
|
16-
= note: see issue #32408 <https://github.com/rust-lang/rust/issues/32408> for more information
16+
= note: see issue #90957 <https://github.com/rust-lang/rust/issues/90957> for more information
1717
= help: add `#![feature(naked_functions)]` to the crate attributes to enable
1818

1919
error: aborting due to 2 previous errors

0 commit comments

Comments
 (0)