From 58bbb81764ccd20d06018b407d2698e4f1ad0709 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 13 Sep 2011 06:54:58 +0000 Subject: 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 --- utils/TableGen/X86RecognizableInstr.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'utils') diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index 23c0fa8..5338d56 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 -- cgit v1.1