Skip to content

Commit

Permalink
Remove outline asm for x86
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Jul 5, 2023
1 parent 385e0b0 commit fadbffd
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 672 deletions.
Binary file not shown.
8 changes: 2 additions & 6 deletions src/backend/linux_raw/arch/outline/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
//! they match with the kernel convention as closely as possible, to minimize
//! the amount of out-of-line code we need.
//!
//! This is needed because as of our MSRV of 1.63, inline asm and naked
//! functions are experimental.
//! This is needed because as of our MSRV of 1.63, inline asm are experimental
//! for some architectures.

#[cfg(target_arch = "x86")]
mod x86;
// For these architectures, pass the `nr` argument last.
#[cfg(any(
target_arch = "mips",
Expand All @@ -24,5 +22,3 @@ mod nr_last;
target_arch = "powerpc64",
))]
pub(in crate::backend) use nr_last::*;
#[cfg(target_arch = "x86")]
pub(in crate::backend) use x86::*;
Binary file not shown.
285 changes: 0 additions & 285 deletions src/backend/linux_raw/arch/outline/x86.rs

This file was deleted.

Loading

0 comments on commit fadbffd

Please sign in to comment.