Skip to content

Commit 1b5c768

Browse files
committed
Rename the i686 module to x86
This module is used for both i686 and x86-64.
1 parent f456aa8 commit 1b5c768

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libm/src/math/arch/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ cfg_if! {
1515
ceil, ceilf, fabs, fabsf, floor, floorf, rint, rintf, sqrt, sqrtf, trunc, truncf,
1616
};
1717
} else if #[cfg(target_feature = "sse2")] {
18-
mod i686;
19-
pub use i686::{sqrt, sqrtf};
18+
mod x86;
19+
pub use x86::{sqrt, sqrtf};
2020
} else if #[cfg(all(
2121
any(target_arch = "aarch64", target_arch = "arm64ec"),
2222
target_feature = "neon"
File renamed without changes.

0 commit comments

Comments
 (0)