Skip to content

Commit 94a94d7

Browse files
committed
[AVR] Raise and link to a tracking issue for the avr-interrupt calling convention
Also fix the order of the feature gate to fix the tidy errors.
1 parent 208adf9 commit 94a94d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc_feature/active.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,6 @@ declare_features! (
347347
/// Allows `extern "msp430-interrupt" fn()`.
348348
(active, abi_msp430_interrupt, "1.16.0", Some(38487), None),
349349

350-
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
351-
(active, abi_avr_interrupt, "1.41.0", None, None),
352-
353350
/// Allows declarative macros 2.0 (`macro`).
354351
(active, decl_macro, "1.17.0", Some(39412), None),
355352

@@ -577,6 +574,9 @@ declare_features! (
577574
/// No longer treat an unsafe function as an unsafe block.
578575
(active, unsafe_block_in_unsafe_fn, "1.45.0", Some(71668), None),
579576

577+
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
578+
(active, abi_avr_interrupt, "1.45.0", Some(69664), None),
579+
580580
// -------------------------------------------------------------------------
581581
// feature-group-end: actual feature gates
582582
// -------------------------------------------------------------------------

0 commit comments

Comments
 (0)