Skip to content

Commit 99f6776

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 ac1d328 commit 99f6776

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/librustc_feature/active.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -342,9 +342,6 @@ declare_features! (
342342
/// Allows `extern "msp430-interrupt" fn()`.
343343
(active, abi_msp430_interrupt, "1.16.0", Some(38487), None),
344344

345-
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
346-
(active, abi_avr_interrupt, "1.41.0", None, None),
347-
348345
/// Allows declarative macros 2.0 (`macro`).
349346
(active, decl_macro, "1.17.0", Some(39412), None),
350347

@@ -555,6 +552,9 @@ declare_features! (
555552
/// Allows the use of `no_sanitize` attribute.
556553
(active, no_sanitize, "1.42.0", Some(39699), None),
557554

555+
/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
556+
(active, abi_avr_interrupt, "1.42.0", Some(69664), None),
557+
558558
// -------------------------------------------------------------------------
559559
// feature-group-end: actual feature gates
560560
// -------------------------------------------------------------------------

0 commit comments

Comments
 (0)