We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faeb85f commit 6ea2c71Copy full SHA for 6ea2c71
src/windows/msvc/x86_64.rs renamed to src/windows/msvc/x86_64/align.rs
@@ -63,7 +63,7 @@ s! {
63
pub MxCsr_Mask: ::c_ulong,
64
pub FloatRegisters: [M128A; 8],
65
pub XmmRegisters: [M128A; 16],
66
- _Reserved4: [::c_uchar; 96],
+ _Reserved4: [[::c_uchar; 16]; 6],
67
}
68
69
#[repr(align(16))]
src/windows/msvc/x86_64/mod.rs
@@ -0,0 +1,6 @@
1
+cfg_if! {
2
+ if #[cfg(libc_align)] {
3
+ mod align;
4
+ pub use self::align::*;
5
+ }
6
+}
0 commit comments