Rename the i686 module to x86

This module is used for both i686 and x86-64.
This commit is contained in:
Trevor Gross
2025-05-01 17:49:56 +00:00
committed by Trevor Gross
parent 2705f686b5
commit 4a1dc96652
3 changed files with 4 additions and 4 deletions

View File

@@ -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"