File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
src/unix/linux_like/linux/gnu/b64/aarch64 Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 27
27
__reserved: [ [ u64 ; 32 ] ; 16 ] ,
28
28
}
29
29
30
- #[ repr( align( 16 ) ) ]
31
- pub struct user_fpsimd_struct {
32
- pub vregs: [ [ u64 ; 2 ] ; 32 ] ,
33
- pub fpsr: :: c_uint,
34
- pub fpcr: :: c_uint,
35
- }
36
-
37
30
#[ repr( align( 8 ) ) ]
38
31
pub struct clone_args {
39
32
pub flags: :: c_ulonglong,
Original file line number Diff line number Diff line change
1
+ s ! {
2
+ #[ repr( align( 16 ) ) ]
3
+ pub struct user_fpsimd_struct {
4
+ pub vregs: [ [ u64 ; 2 ] ; 32 ] ,
5
+ pub fpsr: :: c_uint,
6
+ pub fpcr: :: c_uint,
7
+ }
8
+ }
Original file line number Diff line number Diff line change @@ -934,5 +934,8 @@ cfg_if! {
934
934
if #[ cfg( libc_int128) ] {
935
935
mod int128;
936
936
pub use self :: int128:: * ;
937
+ } else {
938
+ mod fallback;
939
+ pub use self :: fallback:: * ;
937
940
}
938
941
}
You can’t perform that action at this time.
0 commit comments