From: Julian Seward Date: Sat, 1 Mar 2014 11:21:45 +0000 (+0000) Subject: Fixes form arm64-linux. X-Git-Tag: svn/VALGRIND_3_10_0~592 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c400e5e0cb2db7149c99b5977cc577688378430;p=thirdparty%2Fvalgrind.git Fixes form arm64-linux. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13844 --- diff --git a/none/tests/allexec_prepare_prereq b/none/tests/allexec_prepare_prereq index b8f5bc3e4c..09958b5525 100755 --- a/none/tests/allexec_prepare_prereq +++ b/none/tests/allexec_prepare_prereq @@ -31,7 +31,7 @@ pair() pair x86 amd64 pair ppc32 ppc64 pair s390x_unexisting_in_32bits s390x -pair arm arm_unexisting_in_64bits +pair arm arm64 pair mips32 mips64 exit 0 diff --git a/none/tests/faultstatus.c b/none/tests/faultstatus.c index ee30ab1b46..cbee7e4599 100644 --- a/none/tests/faultstatus.c +++ b/none/tests/faultstatus.c @@ -18,7 +18,7 @@ Hence we get a SIGFPE but the SI_CODE is different from that on x86/amd64-linux. */ -#if defined(__powerpc__) +#if defined(__powerpc__) || defined(__aarch64__) # define DIVISION_BY_ZERO_TRIGGERS_FPE 0 # define DIVISION_BY_ZERO_SI_CODE SI_TKILL #elif defined(__arm__)