diff options
author | Craig Topper <craig.topper@gmail.com> | 2011-09-14 06:41:26 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2011-09-14 06:41:26 +0000 |
commit | a08e255e1e47d732b31262a95a8ba810f85735c4 (patch) | |
tree | aec33b9f13f500a88e44d79afe35ad0e6e469170 /utils/TableGen/X86RecognizableInstr.cpp | |
parent | 3bb43a829e03ed8ea671f5bc331772ef7afc3313 (diff) |
Fix mem type for VEX.128 form of VROUNDP*. Remove filter preventing VROUND from being recognized by disassembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | utils/TableGen/X86RecognizableInstr.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index 5338d56a78..ab40222898 100644 --- a/utils/TableGen/X86RecognizableInstr.cpp +++ b/utils/TableGen/X86RecognizableInstr.cpp @@ -352,11 +352,6 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const { return FILTER_STRONG; - // TEMPORARY pending bug fixes - - if (Name.find("VROUND") != Name.npos) - return FILTER_STRONG; - // Filter out artificial instructions if (Name.find("TAILJMP") != Name.npos || |