Skip to content

Commit 7afb4fb

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 f9fe847 commit 7afb4fb

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
@@ -346,9 +346,6 @@ declare_features! (
346346
/// Allows `extern "msp430-interrupt" fn()`.
347347
(active, abi_msp430_interrupt, "1.16.0", Some(38487), None),
348348

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

@@ -568,6 +565,9 @@ declare_features! (
568565
/// Allow conditional compilation depending on rust version
569566
(active, cfg_version, "1.45.0", Some(64796), None),
570567

568+
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
569+
(active, abi_avr_interrupt, "1.45.0", Some(69664), None),
570+
571571
// -------------------------------------------------------------------------
572572
// feature-group-end: actual feature gates
573573
// -------------------------------------------------------------------------

0 commit comments

Comments
 (0)