Rename the i686 module to x86
This module is used for both i686 and x86-64.
This commit is contained in:
committed by
Trevor Gross
parent
2705f686b5
commit
4a1dc96652
@@ -15,8 +15,8 @@ cfg_if! {
|
||||
ceil, ceilf, fabs, fabsf, floor, floorf, rint, rintf, sqrt, sqrtf, trunc, truncf,
|
||||
};
|
||||
} else if #[cfg(target_feature = "sse2")] {
|
||||
mod i686;
|
||||
pub use i686::{sqrt, sqrtf};
|
||||
mod x86;
|
||||
pub use x86::{sqrt, sqrtf};
|
||||
} else if #[cfg(all(
|
||||
any(target_arch = "aarch64", target_arch = "arm64ec"),
|
||||
target_feature = "neon"
|
||||
|
||||
Reference in New Issue
Block a user