From: Florian Krohm Date: Sat, 21 Apr 2012 15:43:25 +0000 (+0000) Subject: Set VEX_HWCAPS_S390X_STFLE if available. X-Git-Tag: svn/VALGRIND_3_8_0~343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10962f4094e5e21474466de0c202264a7c3a8a20;p=thirdparty%2Fvalgrind.git Set VEX_HWCAPS_S390X_STFLE if available. This should have been part of r12335. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12525 --- diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index d49fcddb7d..3f30a0626c 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -1130,6 +1130,7 @@ Bool VG_(machine_get_hwcaps)( void ) if (have_DFP) vai.hwcaps |= VEX_HWCAPS_S390X_DFP; if (have_FGX) vai.hwcaps |= VEX_HWCAPS_S390X_FGX; if (have_ETF2) vai.hwcaps |= VEX_HWCAPS_S390X_ETF2; + if (have_STFLE) vai.hwcaps |= VEX_HWCAPS_S390X_STFLE; VG_(debugLog)(1, "machine", "hwcaps = 0x%x\n", vai.hwcaps);