diff options
author | 2021-12-17 08:31:02 +0100 | |
---|---|---|
committer | 2021-12-17 08:31:02 +0100 | |
commit | 981ce3a8fbf44a9f7a5b046de501c645b4c2098a (patch) | |
tree | 49145efadf54ee0c42baa05fe775eb53b1f0abfe | |
parent | d40970c4172d89ebe72cbba79ca4b1b974ba6000 (diff) | |
download | cortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.tar.gz cortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.tar.zst cortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.zip |
asm: allow stable asm
-rw-r--r-- | asm/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -34,6 +34,8 @@ #![no_std] #![crate_type = "staticlib"] #![deny(warnings)] +// Don't warn about feature(asm) being stable on Rust >= 1.59.0 +#![allow(stable_features)] mod inline; |