]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mips: fix build breakage introduced in r16309
authorPetar Jovanovic <mips32r2@gmail.com>
Mon, 24 Apr 2017 13:33:17 +0000 (13:33 +0000)
committerPetar Jovanovic <mips32r2@gmail.com>
Mon, 24 Apr 2017 13:33:17 +0000 (13:33 +0000)
Change archinfo->hwcaps to vex_archinfo.hwcaps.
Fixes build breakage.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16310

coregrind/m_translate.c

index c467e33c70c385d4ebb653d7d71c1d667233a4d5..f763a947b20e6eaa3065f30b48d027074e449054 100644 (file)
@@ -1696,7 +1696,7 @@ Bool VG_(translate) ( ThreadId tid,
    /* Compute guest__use_fallback_LLSC, overiding any settings of
       VG_(clo_fallback_llsc) that we know would cause the guest to
       fail (loop). */
-   if (VEX_MIPS_COMP_ID(archinfo->hwcaps) == VEX_PRID_COMP_CAVIUM) {
+   if (VEX_MIPS_COMP_ID(vex_archinfo.hwcaps) == VEX_PRID_COMP_CAVIUM) {
       /* We must use the fallback scheme. */
       vex_abiinfo.guest__use_fallback_LLSC = True;
    } else {