diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-02-22 10:45:52 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-22 10:45:52 -0500 |
| commit | 94f4f681e5c32085b290036ffb1e10173dd3a88b (patch) | |
| tree | f5d430469ea69b967f820182019e854ecf0f908c | |
| parent | 8c786f31915b67dae6a8f77a61c87490e9d262c6 (diff) | |
| parent | 6ce3ab72a07e4aadb6bf9b62427d5c31c4639e59 (diff) | |
| download | rust-94f4f681e5c32085b290036ffb1e10173dd3a88b.tar.gz rust-94f4f681e5c32085b290036ffb1e10173dd3a88b.zip | |
Merge pull request #396 from taiki-e/aarch64-big
Fix build error on big endian aarch64
| -rw-r--r-- | crates/core_simd/src/vendor/arm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/vendor/arm.rs b/crates/core_simd/src/vendor/arm.rs index ee5c6421373..233dc080728 100644 --- a/crates/core_simd/src/vendor/arm.rs +++ b/crates/core_simd/src/vendor/arm.rs @@ -69,7 +69,7 @@ mod simd32 { from_transmute! { unsafe Simd<i8, 4> => int8x4_t } } -#[cfg(target_arch = "aarch64")] +#[cfg(all(target_arch = "aarch64", target_endian = "little"))] mod aarch64 { use super::neon::*; use super::*; |
