Skip to content

Commit

Permalink
Fix build error on big endian aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 22, 2024
1 parent 6491107 commit f414f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_simd/src/vendor/arm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;
Expand Down

0 comments on commit f414f3b

Please sign in to comment.