From: Julian Seward Date: Mon, 21 May 2012 16:16:13 +0000 (+0000) Subject: Fix feature recognition on AMD Bulldozer following the recent AVX X-Git-Tag: svn/VALGRIND_3_8_1^2~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=977d6cfb06bf7371262c71e8c9c7f94c16959570;p=thirdparty%2Fvalgrind.git Fix feature recognition on AMD Bulldozer following the recent AVX commits. Fixes #300389. git-svn-id: svn://svn.valgrind.org/vex/trunk@2334 --- diff --git a/VEX/priv/main_main.c b/VEX/priv/main_main.c index f3516960e4..a627d67022 100644 --- a/VEX/priv/main_main.c +++ b/VEX/priv/main_main.c @@ -1075,6 +1075,9 @@ static HChar* show_hwcaps_amd64 ( UInt hwcaps ) case VEX_HWCAPS_AMD64_SSE3 | VEX_HWCAPS_AMD64_CX16 | VEX_HWCAPS_AMD64_AVX: return "amd64-sse3-cx16-avx"; + case VEX_HWCAPS_AMD64_SSE3 | VEX_HWCAPS_AMD64_CX16 + | VEX_HWCAPS_AMD64_LZCNT | VEX_HWCAPS_AMD64_AVX: + return "amd64-sse3-cx16-lzcnt-avx"; default: return NULL; }