Skip to content

Commit 0396ce0

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 b1b402c commit 0396ce0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustc_feature/active.rs

+3-3
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

@@ -562,6 +559,9 @@ declare_features! (
562559
/// Allow negative trait implementations.
563560
(active, negative_impls, "1.44.0", Some(68318), None),
564561

562+
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
563+
(active, abi_avr_interrupt, "1.44.0", Some(69664), None),
564+
565565
// -------------------------------------------------------------------------
566566
// feature-group-end: actual feature gates
567567
// -------------------------------------------------------------------------

0 commit comments

Comments
 (0)