Skip to content

Commit 7e9cbd9

Browse files
committed
fix: remove asm_experimental_arch feature references
1 parent c4caf5c commit 7e9cbd9

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@ check-cfg = [
246246
'cfg(alloc_c_string)',
247247
'cfg(alloc_ffi)',
248248
'cfg(apple)',
249-
'cfg(asm_experimental_arch)',
250249
'cfg(bsd)',
251250
'cfg(core_c_str)',
252251
'cfg(core_ffi_c)',

build.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,6 @@ fn main() {
127127
// Use the linux_raw backend.
128128
use_feature("linux_raw_dep");
129129
use_feature("linux_raw");
130-
if rustix_use_experimental_asm {
131-
use_feature("asm_experimental_arch");
132-
}
133130
}
134131

135132
// Detect whether the compiler requires us to use thumb mode on ARM.

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@
114114
any(feature = "rustc-dep-of-std", core_intrinsics),
115115
feature(core_intrinsics)
116116
)]
117-
#![cfg_attr(asm_experimental_arch, feature(asm_experimental_arch))]
118117
#![cfg_attr(not(feature = "all-apis"), allow(dead_code))]
119118
// It is common in Linux and libc APIs for types to vary between platforms.
120119
#![allow(clippy::unnecessary_cast)]

0 commit comments

Comments
 (0)