Skip to content

Commit 548eaf5

Browse files
committed
aarch64-linux-gnu: fix fallback fpsimd_struct build conditions
1 parent ba16d81 commit 548eaf5

File tree

1 file changed

+3
-1
lines changed
  • src/unix/linux_like/linux/gnu/b64/aarch64

1 file changed

+3
-1
lines changed

src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,13 +928,15 @@ cfg_if! {
928928
mod align;
929929
pub use self::align::*;
930930
}
931+
932+
931933
}
932934

933935
cfg_if! {
934936
if #[cfg(libc_int128)] {
935937
mod int128;
936938
pub use self::int128::*;
937-
} else {
939+
} else if #[cfg(libc_align)] {
938940
mod fallback;
939941
pub use self::fallback::*;
940942
}

0 commit comments

Comments
 (0)