From d9e1669d1c34715dabd372cb511f045c2802e2b3 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sun, 5 Jan 2014 06:55:48 +0000 Subject: Use patterns to remove some duplicate instructions. llvm-svn: 198550 --- llvm/utils/TableGen/X86RecognizableInstr.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp') diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp index c360d866fa7..75bf4130774 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.cpp +++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp @@ -509,9 +509,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const { // Special cases. - if (Name == "MOVPQI2QImr" || - Name == "VMOVPQI2QImr" || - Name == "VMASKMOVDQU64") + if (Name == "VMASKMOVDQU64") return FILTER_WEAK; // XACQUIRE and XRELEASE reuse REPNE and REP respectively. -- cgit v1.2.3