summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2011-09-13 06:54:58 +0000
committerCraig Topper <craig.topper@gmail.com>2011-09-13 06:54:58 +0000
commit58bbb81764ccd20d06018b407d2698e4f1ad0709 (patch)
treeb2394788bca9f7b6fcdc0e5c8029224d8792bbbd /utils
parent6b0b2d6c4174536cedd04e912600237618d41817 (diff)
downloadllvm-58bbb81764ccd20d06018b407d2698e4f1ad0709.tar.gz
llvm-58bbb81764ccd20d06018b407d2698e4f1ad0709.tar.bz2
llvm-58bbb81764ccd20d06018b407d2698e4f1ad0709.tar.xz
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
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index 23c0fa8cd9..5338d56a78 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/utils/TableGen/X86RecognizableInstr.cpp
@@ -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