@@ -67,9 +67,19 @@ impl LimbConfig for LimbConfig64 {
67
67
const LARGE_POWERS : & ' static [ & ' static [ Self :: Limb ] ] = & super :: large_powers64:: POW5 ;
68
68
}
69
69
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
+ ) ) ]
71
76
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
+ ) ) ) ]
73
83
type PlatformLimbConfig = LimbConfig32 ;
74
84
75
85
pub type Limb = <PlatformLimbConfig as LimbConfig >:: Limb ;
@@ -95,14 +105,24 @@ fn as_wide<T: Integer>(t: T) -> Wide {
95
105
96
106
/// Split u64 into limbs, in little-endian order.
97
107
#[ 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
+ ) ) ) ]
99
114
fn split_u64 ( x : u64 ) -> [ Limb ; 2 ] {
100
115
[ as_limb ( x) , as_limb ( x >> 32 ) ]
101
116
}
102
117
103
118
/// Split u64 into limbs, in little-endian order.
104
119
#[ 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
+ ) ) ]
106
126
fn split_u64 ( x : u64 ) -> [ Limb ; 1 ] {
107
127
[ as_limb ( x) ]
108
128
}
0 commit comments