Skip to content

Commit af5faa8

Browse files
committed
use [u64; 2] with manual alignment instead of u128
1 parent 1b5f313 commit af5faa8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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)