Skip to content

Commit

Permalink
Merge pull request #396 from taiki-e/aarch64-big
Browse files Browse the repository at this point in the history
Fix build error on big endian aarch64
  • Loading branch information
calebzulawski authored Feb 22, 2024
2 parents 8c786f3 + 6ce3ab7 commit 94f4f68
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 94f4f68

Please sign in to comment.