This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Description
On 2020-08-05 @recmo wrote in 6a4cb9b “Use arch folder”:
ARM64 and WASM
mod x86_64;
#[cfg(all(feature = "asm", target_arch = "x86_64", target_feature = "adx"))]
mod x86_64_adx;
// TODO: ARM64 and WASM
// Re-export most specific architecture
#[cfg(not(all(feature = "asm", target_arch = "x86_64")))]
pub(crate) use generic::*;
From algebra/u256/src/arch/mod.rs:9