Skip to content

Commit caf06b6

Browse files
committed
Gate abi_x86_interrupt feature on x86_64
1 parent 86ec272 commit caf06b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![warn(clippy::transmute_ptr_to_ptr)]
88
#![allow(clippy::missing_safety_doc)]
99
#![allow(incomplete_features)]
10-
#![feature(abi_x86_interrupt)]
10+
#![cfg_attr(target_arch = "x86_64", feature(abi_x86_interrupt))]
1111
#![feature(allocator_api)]
1212
#![feature(asm_const)]
1313
#![feature(linked_list_cursors)]

0 commit comments

Comments
 (0)