mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
tests/tcg: modify multiarch tests to work with clang
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <1574032465-12186-1-git-send-email-tsimpson@quicinc.com> [AJB: tweak header line] Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
6e98888041
commit
22c30b2d20
2 changed files with 5 additions and 3 deletions
|
@ -485,7 +485,11 @@ static void test_signal(void)
|
|||
act.sa_flags = SA_SIGINFO;
|
||||
chk_error(sigaction(SIGSEGV, &act, NULL));
|
||||
if (setjmp(jmp_env) == 0) {
|
||||
*(uint8_t *)0 = 0;
|
||||
/*
|
||||
* clang requires volatile or it will turn this into a
|
||||
* call to abort() instead of forcing a SIGSEGV.
|
||||
*/
|
||||
*(volatile uint8_t *)0 = 0;
|
||||
}
|
||||
|
||||
act.sa_handler = SIG_DFL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue