summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2011-09-14 06:41:26 +0000
committerCraig Topper <craig.topper@gmail.com>2011-09-14 06:41:26 +0000
commita08e255e1e47d732b31262a95a8ba810f85735c4 (patch)
treeaec33b9f13f500a88e44d79afe35ad0e6e469170 /utils
parent3bb43a829e03ed8ea671f5bc331772ef7afc3313 (diff)
downloadllvm-a08e255e1e47d732b31262a95a8ba810f85735c4.tar.gz
llvm-a08e255e1e47d732b31262a95a8ba810f85735c4.tar.bz2
llvm-a08e255e1e47d732b31262a95a8ba810f85735c4.tar.xz
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')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp5
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 ||