1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* See https://gitlab.com/qemu-project/qemu/-/issues/1648 */
6 __attribute__((noinline
))
9 /* Success! Continue through sigreturn. */
13 * Because of the change of ABI between foo and bar, the compiler is
14 * required to save XMM6-XMM15. The compiler will use MOVAPS or MOVDQA,
15 * which will trap if the stack frame is not 16 byte aligned.
17 __attribute__((noinline
, ms_abi
))
23 void sighandler(int num
)
30 signal(SIGUSR1
, sighandler
);