From: Carl Love Date: Mon, 13 Mar 2017 20:14:08 +0000 (+0000) Subject: There is a typo in the configure.ac file that causes the HAS_ISA_3_00 X-Git-Tag: svn/VALGRIND_3_13_0~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6476ec268fd6b406615569107196377e1b71e3fe;p=thirdparty%2Fvalgrind.git There is a typo in the configure.ac file that causes the HAS_ISA_3_00 variable to not be set. The mask64 value, in file VEX/priv/guest_ppc_toIR.c is missing the HWCAPS bit for ISA3.0. vex commit 3317. bugzilla 377478 git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16270 --- diff --git a/NEWS b/NEWS index f451635c14..b22951f042 100644 --- a/NEWS +++ b/NEWS @@ -139,6 +139,7 @@ where XXXXXX is the bug number as listed below. 376729 PPC64, remove R2 from the clobber list == 371668 377427 PPC64, lxv instruction failing on odd destination register +377478 PPC64: ISA 3.0 setup fixes Release 3.12.0 (20 October 2016) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/configure.ac b/configure.ac index 587917ba4d..4c3cc58446 100644 --- a/configure.ac +++ b/configure.ac @@ -1537,7 +1537,7 @@ ac_asm_have_isa_3_00=no AC_MSG_RESULT([no]) ]) -AM_CONDITIONAL(HAS_ISA_3_00, test x$ac_asm_have_isa_3_00 = xyes \ +AM_CONDITIONAL(HAS_ISA_3_00, [test x$ac_asm_have_isa_3_00 = xyes \ -a x$HWCAP_HAS_ISA_3_00 = xyes]) # Check for pthread_create@GLIBC2.0