Skip to content

Commit

Permalink
[AVR] Raise and link to a tracking issue for the avr-interrupt call…
Browse files Browse the repository at this point in the history
…ing convention

Also fix the order of the feature gate to fix the tidy errors.
  • Loading branch information
dylanmckay committed Mar 3, 2020
1 parent ac1d328 commit 99f6776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustc_feature/active.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,6 @@ declare_features! (
/// Allows `extern "msp430-interrupt" fn()`.
(active, abi_msp430_interrupt, "1.16.0", Some(38487), None),

/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
(active, abi_avr_interrupt, "1.41.0", None, None),

/// Allows declarative macros 2.0 (`macro`).
(active, decl_macro, "1.17.0", Some(39412), None),

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

/// Allows `extern "avr-interrupt" fn()` and `extern "avr-non-blocking-interrupt" fn()`.
(active, abi_avr_interrupt, "1.42.0", Some(69664), None),

// -------------------------------------------------------------------------
// feature-group-end: actual feature gates
// -------------------------------------------------------------------------
Expand Down

0 comments on commit 99f6776

Please sign in to comment.