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:
parent
d7e78a8926
commit
5478d3f8df
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user