File tree Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change
1
+ s_no_extra_traits ! {
2
+ #[ allow( missing_debug_implementations) ]
3
+ pub struct max_align_t {
4
+ priv_: f64
5
+ }
6
+ }
7
+
1
8
s ! {
2
9
pub struct __darwin_mcontext64 {
3
10
pub __es: __darwin_arm_exception_state64,
Original file line number Diff line number Diff line change @@ -121,13 +121,6 @@ extern "C" {
121
121
) -> :: c_int ;
122
122
}
123
123
124
- cfg_if ! {
125
- if #[ cfg( libc_align) ] {
126
- mod align;
127
- pub use self :: align:: * ;
128
- }
129
- }
130
-
131
124
cfg_if ! {
132
125
if #[ cfg( target_arch = "x86_64" ) ] {
133
126
mod x86_64;
Original file line number Diff line number Diff line change
1
+ s_no_extra_traits ! {
2
+ #[ allow( missing_debug_implementations) ]
3
+ #[ repr( align( 16 ) ) ]
4
+ pub struct max_align_t {
5
+ priv_: [ f64 ; 2 ]
6
+ }
7
+ }
Original file line number Diff line number Diff line change 93
93
pub __xmm_reg: [ :: c_char; 16 ] ,
94
94
}
95
95
}
96
+
97
+ cfg_if ! {
98
+ if #[ cfg( libc_align) ] {
99
+ mod align;
100
+ pub use self :: align:: * ;
101
+ }
102
+ }
You can’t perform that action at this time.
0 commit comments