From 0f0c946ffd61de280b8fcd4fd3a82f5503f50cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Fri, 11 Oct 2024 10:15:00 +0200 Subject: [PATCH] fix: remove stabilized `feature(asm)` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- rftrace/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rftrace/src/lib.rs b/rftrace/src/lib.rs index b2da3c5..07bd777 100644 --- a/rftrace/src/lib.rs +++ b/rftrace/src/lib.rs @@ -2,7 +2,6 @@ //! Provides an `mcount` implementation, which does nothing by default but can be enabled via frontend. //! A lot of documentation can be found in the parent workspaces [readme](https://github.com/hermit-os/rftrace). -#![cfg_attr(feature = "staticlib", feature(asm))] #![cfg_attr(feature = "staticlib", feature(naked_functions))] #![cfg_attr(feature = "staticlib", feature(thread_local))] #![cfg_attr(feature = "staticlib", no_std)]