Skip to content

Commit 16e04ce

Browse files
author
Piotr Osiewicz
committed
fixup! Remove limb_width32 and limb_width64 features
1 parent c754f03 commit 16e04ce

File tree

2 files changed

+36
-6
lines changed

2 files changed

+36
-6
lines changed

src/lexical/math.rs

+24-4
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,19 @@ impl LimbConfig for LimbConfig64 {
6767
const LARGE_POWERS: &'static [&'static [Self::Limb]] = &super::large_powers64::POW5;
6868
}
6969

70-
#[cfg(any(target_arch = "aarch64", target_arch = "mips64", target_arch = "powerpc64", target_arch = x86_64))]
70+
#[cfg(any(
71+
target_arch = "aarch64",
72+
target_arch = "mips64",
73+
target_arch = "powerpc64",
74+
target_arch = "x86_64"
75+
))]
7176
type PlatformLimbConfig = LimbConfig64;
72-
#[cfg(not(any(target_arch = "aarch64", target_arch = "mips64", target_arch = "powerpc64", target_arch = x86_64)))]
77+
#[cfg(not(any(
78+
target_arch = "aarch64",
79+
target_arch = "mips64",
80+
target_arch = "powerpc64",
81+
target_arch = "x86_64"
82+
)))]
7383
type PlatformLimbConfig = LimbConfig32;
7484

7585
pub type Limb = <PlatformLimbConfig as LimbConfig>::Limb;
@@ -95,14 +105,24 @@ fn as_wide<T: Integer>(t: T) -> Wide {
95105

96106
/// Split u64 into limbs, in little-endian order.
97107
#[inline]
98-
#[cfg(limb_width_32)]
108+
#[cfg(not(any(
109+
target_arch = "aarch64",
110+
target_arch = "mips64",
111+
target_arch = "powerpc64",
112+
target_arch = "x86_64"
113+
)))]
99114
fn split_u64(x: u64) -> [Limb; 2] {
100115
[as_limb(x), as_limb(x >> 32)]
101116
}
102117

103118
/// Split u64 into limbs, in little-endian order.
104119
#[inline]
105-
#[cfg(limb_width_64)]
120+
#[cfg(any(
121+
target_arch = "aarch64",
122+
target_arch = "mips64",
123+
target_arch = "powerpc64",
124+
target_arch = "x86_64"
125+
))]
106126
fn split_u64(x: u64) -> [Limb; 1] {
107127
[as_limb(x)]
108128
}

tests/lexical/math.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,22 @@ impl Math for Bigint {
1818
}
1919
}
2020

21-
#[cfg(limb_width_32)]
21+
#[cfg(not(any(
22+
target_arch = "aarch64",
23+
target_arch = "mips64",
24+
target_arch = "powerpc64",
25+
target_arch = "x86_64"
26+
)))]
2227
pub(crate) fn from_u32(x: &[u32]) -> Vec<Limb> {
2328
x.iter().cloned().collect()
2429
}
2530

26-
#[cfg(limb_width_64)]
31+
#[cfg(any(
32+
target_arch = "aarch64",
33+
target_arch = "mips64",
34+
target_arch = "powerpc64",
35+
target_arch = "x86_64"
36+
))]
2737
pub(crate) fn from_u32(x: &[u32]) -> Vec<Limb> {
2838
let mut v = Vec::<Limb>::default();
2939
for xi in x.chunks(2) {

0 commit comments

Comments
 (0)