aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Robert Jördens <rj@quartiq.de> 2021-12-17 08:31:02 +0100
committerGravatar Robert Jördens <rj@quartiq.de> 2021-12-17 08:31:02 +0100
commit981ce3a8fbf44a9f7a5b046de501c645b4c2098a (patch)
tree49145efadf54ee0c42baa05fe775eb53b1f0abfe
parentd40970c4172d89ebe72cbba79ca4b1b974ba6000 (diff)
downloadcortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.tar.gz
cortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.tar.zst
cortex-m-981ce3a8fbf44a9f7a5b046de501c645b4c2098a.zip
asm: allow stable asm
-rw-r--r--asm/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/asm/lib.rs b/asm/lib.rs
index fc8ddc8..48f3dc2 100644
--- a/asm/lib.rs
+++ b/asm/lib.rs
@@ -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;