Skip to content

Commit 2ec0e61

Browse files
committed
use [u64; 2] with manual alignment instead of u128
1 parent 10347e8 commit 2ec0e61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/unix/bsd/apple/b64/aarch64.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ s! {
2121
pub __pad: u32,
2222
}
2323

24+
#[repr(align(16))]
2425
pub struct __darwin_arm_neon_state64 {
25-
pub __v: [u128; 32],
26+
pub __v: [[u64; 2]; 32],
2627
pub __fpsr: u32,
2728
pub __fpcr: u32,
2829
}

0 commit comments

Comments
 (0)