Skip to content

Commit 52fa133

Browse files
committed
emscripten: Lower max_align_t from 16 to 8 bytes
See: llvm/llvm-project@d1a96e9.
1 parent eb05498 commit 52fa133

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

libc-test/build.rs

-4
Original file line numberDiff line numberDiff line change
@@ -2881,10 +2881,6 @@ fn test_emscripten(target: &str) {
28812881
ty if ty.starts_with("epoll") => true,
28822882
ty if ty.starts_with("signalfd") => true,
28832883

2884-
// FIXME: Lowered from 16 to 8 bytes in
2885-
// llvm/llvm-project@d1a96e9
2886-
"max_align_t" => true,
2887-
28882884
// FIXME: The size has been changed due to time64
28892885
"utimbuf" | "timeval" | "timespec" | "rusage" | "itimerval" | "sched_param"
28902886
| "stat" | "stat64" | "shmid_ds" | "msqid_ds" => true,

src/unix/linux_like/emscripten/align.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ macro_rules! expand_align {
3838
}
3939

4040
#[allow(missing_debug_implementations)]
41-
#[repr(align(16))]
41+
#[repr(align(8))]
4242
pub struct max_align_t {
43-
priv_: [f64; 4]
43+
priv_: [f64; 3]
4444
}
4545

4646
}

0 commit comments

Comments
 (0)