]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
There is a typo in the configure.ac file that causes the HAS_ISA_3_00
authorCarl Love <cel@us.ibm.com>
Mon, 13 Mar 2017 20:14:08 +0000 (20:14 +0000)
committerCarl Love <cel@us.ibm.com>
Mon, 13 Mar 2017 20:14:08 +0000 (20:14 +0000)
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

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index f451635c14c3027e91cd4e9226684738902a8362..b22951f042d6a8df2db2b17a63b6931fb15a2946 100644 (file)
--- 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)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
index 587917ba4d0cd3fd2b4f484b8d5f81f6f2eb7f76..4c3cc5844674ed6f1ea2e94c686112f1a77baac4 100644 (file)
@@ -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