@@ -255,10 +255,10 @@ impl IntParse {
255
255
256
256
#[ cfg( feature = "num-bigint" ) ]
257
257
{
258
- #[ cfg( target_arch = "aarch64" ) ]
259
- // in aarch64 we use a 128 bit registers - 16 bytes
260
- const ONGOING_CHUNK_MULTIPLIER : u64 = 10u64 . pow ( 16 ) ;
261
- #[ cfg( not( target_arch = "aarch64" ) ) ]
258
+ // #[cfg(target_arch = "aarch64")]
259
+ // // in aarch64 we use a 128 bit registers - 16 bytes
260
+ // const ONGOING_CHUNK_MULTIPLIER: u64 = 10u64.pow(16);
261
+ // #[cfg(not(target_arch = "aarch64"))]
262
262
// decode_int_chunk_fallback - we parse 18 bytes when the number is ongoing
263
263
const ONGOING_CHUNK_MULTIPLIER : u64 = 10u64 . pow ( 18 ) ;
264
264
@@ -328,14 +328,14 @@ impl IntChunk {
328
328
fn parse_big ( data : & [ u8 ] , index : usize ) -> ( Self , usize ) {
329
329
// TODO x86_64: use simd
330
330
331
- #[ cfg( target_arch = "aarch64" ) ]
332
- {
333
- crate :: simd_aarch64:: decode_int_chunk ( data, index)
334
- }
335
- #[ cfg( not( target_arch = "aarch64" ) ) ]
336
- {
337
- decode_int_chunk_fallback ( data, index, 0 )
338
- }
331
+ // #[cfg(target_arch = "aarch64")]
332
+ // {
333
+ crate :: simd_aarch64:: decode_int_chunk ( data, index)
334
+ // }
335
+ // #[cfg(not(target_arch = "aarch64"))]
336
+ // {
337
+ // decode_int_chunk_fallback(data, index, 0)
338
+ // }
339
339
}
340
340
}
341
341
0 commit comments