File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
src/unix/linux_like/emscripten Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2890,10 +2890,6 @@ fn test_emscripten(target: &str) {
28902890 ty if ty. starts_with ( "epoll" ) => true ,
28912891 ty if ty. starts_with ( "signalfd" ) => true ,
28922892
2893- // FIXME: Lowered from 16 to 8 bytes in
2894- // llvm/llvm-project@d1a96e9
2895- "max_align_t" => true ,
2896-
28972893 // FIXME: The size has been changed due to time64
28982894 "utimbuf" | "timeval" | "timespec" | "rusage" | "itimerval" | "sched_param"
28992895 | "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 {
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 }
You can’t perform that action at this time.
0 commit comments