mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Remove filter that was preventing MOVDQU/MOVDQA and their VEX forms from being disassembled. Also added encodings for the other register/register form of these instructions. Fixes PR10848.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139588 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -354,9 +354,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
|
||||
|
||||
// TEMPORARY pending bug fixes
|
||||
|
||||
if (Name.find("VMOVDQU") != Name.npos ||
|
||||
Name.find("VMOVDQA") != Name.npos ||
|
||||
Name.find("VROUND") != Name.npos)
|
||||
if (Name.find("VROUND") != Name.npos)
|
||||
return FILTER_STRONG;
|
||||
|
||||
// Filter out artificial instructions
|
||||
|
Reference in New Issue
Block a user