1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Fix so CRC32r64r8 isn't accidentally filtered from the disassembler tables.

llvm-svn: 192339
This commit is contained in:
Craig Topper 2013-10-10 04:26:52 +00:00
parent d7e78a8926
commit 5478d3f8df

View File

@ -522,7 +522,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
// Filter out alternate forms of AVX instructions
if (Name.find("_alt") != Name.npos ||
(Name.find("r64r") != Name.npos && Name.find("r64r64") == Name.npos) ||
(Name.find("r64r") != Name.npos && Name.find("r64r64") == Name.npos && Name.find("r64r8") == Name.npos) ||
Name.find("_64mr") != Name.npos ||
Name.find("rr64") != Name.npos)
return FILTER_WEAK;