mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Fix so CRC32r64r8 isn't accidentally filtered from the disassembler tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192339 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
25dafa388a
commit
be5c1fd43f
@ -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…
x
Reference in New Issue
Block a user