1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

align buffer to store FPU registers

This commit is contained in:
Stefan Lankes 2015-07-15 23:42:17 +02:00
parent 104d588f03
commit 6ecdfa6181

View file

@ -86,7 +86,7 @@ typedef struct {
i387_fxsave_t fxsave;
xsave_header_t hdr;
uint32_t ymmh[64];
} xsave_t;
} xsave_t __attribute__ ((aligned (64)));
union fpu_state {
i387_fsave_t fsave;