summaryrefslogtreecommitdiffstats
path: root/vendor/bytecount/src/simd/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bytecount/src/simd/mod.rs')
-rw-r--r--vendor/bytecount/src/simd/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/bytecount/src/simd/mod.rs b/vendor/bytecount/src/simd/mod.rs
index d144e1847..fa9857546 100644
--- a/vendor/bytecount/src/simd/mod.rs
+++ b/vendor/bytecount/src/simd/mod.rs
@@ -15,3 +15,7 @@ pub mod x86_sse2;
// Runtime feature detection is not available with no_std.
#[cfg(all(feature = "runtime-dispatch-simd", target_arch = "x86_64"))]
pub mod x86_avx2;
+
+/// Modern ARM machines are also quite capable thanks to NEON
+#[cfg(target_arch = "aarch64")]
+pub mod aarch64;