summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/x86/trampoline.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/x86/trampoline.c')
-rw-r--r--sysdeps/mach/hurd/x86/trampoline.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/x86/trampoline.c b/sysdeps/mach/hurd/x86/trampoline.c
index 1f92064ebf..6318c9528a 100644
--- a/sysdeps/mach/hurd/x86/trampoline.c
+++ b/sysdeps/mach/hurd/x86/trampoline.c
@@ -242,11 +242,17 @@ _hurd_setup_sighandler (struct hurd_sigstate *ss, const struct sigaction *action
/* struct sigcontext is laid out so that starting at sc_gs mimics a
struct i386_thread_state. */
+ _Static_assert (offsetof (struct sigcontext, sc_i386_thread_state)
+ % __alignof__ (struct i386_thread_state) == 0,
+ "sc_i386_thread_state layout mismatch");
memcpy (&scp->sc_i386_thread_state,
&state->basic, sizeof (state->basic));
/* struct sigcontext is laid out so that starting at sc_fpkind mimics
a struct i386_float_state. */
+ _Static_assert (offsetof (struct sigcontext, sc_i386_float_state)
+ % __alignof__ (struct i386_float_state) == 0,
+ "sc_i386_float_state layout mismatch");
ok = machine_get_state (ss->thread, state, i386_FLOAT_STATE,
&state->fpu, &scp->sc_i386_float_state,
sizeof (state->fpu));