File tree 2 files changed +2
-6
lines changed
src/unix/linux_like/emscripten
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2881,10 +2881,6 @@ fn test_emscripten(target: &str) {
2881
2881
ty if ty. starts_with ( "epoll" ) => true ,
2882
2882
ty if ty. starts_with ( "signalfd" ) => true ,
2883
2883
2884
- // FIXME: Lowered from 16 to 8 bytes in
2885
- // llvm/llvm-project@d1a96e9
2886
- "max_align_t" => true ,
2887
-
2888
2884
// FIXME: The size has been changed due to time64
2889
2885
"utimbuf" | "timeval" | "timespec" | "rusage" | "itimerval" | "sched_param"
2890
2886
| "stat" | "stat64" | "shmid_ds" | "msqid_ds" => true ,
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ macro_rules! expand_align {
38
38
}
39
39
40
40
#[ allow( missing_debug_implementations) ]
41
- #[ repr( align( 16 ) ) ]
41
+ #[ repr( align( 8 ) ) ]
42
42
pub struct max_align_t {
43
- priv_: [ f64 ; 4 ]
43
+ priv_: [ f64 ; 3 ]
44
44
}
45
45
46
46
}
You can’t perform that action at this time.
0 commit comments