|
From: <sv...@va...> - 2017-04-24 13:33:24
|
Author: petarj
Date: Mon Apr 24 14:33:17 2017
New Revision: 16310
Log:
mips: fix build breakage introduced in r16309
Change archinfo->hwcaps to vex_archinfo.hwcaps.
Fixes build breakage.
Modified:
trunk/coregrind/m_translate.c
Modified: trunk/coregrind/m_translate.c
==============================================================================
--- trunk/coregrind/m_translate.c (original)
+++ trunk/coregrind/m_translate.c Mon Apr 24 14:33:17 2017
@@ -1696,7 +1696,7 @@
/* 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 {
|