summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/X86RecognizableInstr.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-01-02 17:28:14 +0000
committerCraig Topper <craig.topper@gmail.com>2014-01-02 17:28:14 +0000
commit9dd48c8ed47728ea35a225f4da793ba3af683f5c (patch)
tree7e4eb21bf9219971384fc9abab7636328ae4d659 /llvm/utils/TableGen/X86RecognizableInstr.cpp
parent1cc7ae1d0814cb644ac4efd37ab15d5f0855823f (diff)
downloadbcm5719-llvm-9dd48c8ed47728ea35a225f4da793ba3af683f5c.tar.gz
bcm5719-llvm-9dd48c8ed47728ea35a225f4da793ba3af683f5c.zip
Mark all x86 Int_ and _Int patterns as isCodeGenOnly so the disassembler table builder doesn't need to string match them to exclude them.
llvm-svn: 198323
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r--llvm/utils/TableGen/X86RecognizableInstr.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp
index 6e36854137e..a4157d97250 100644
--- a/llvm/utils/TableGen/X86RecognizableInstr.cpp
+++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp
@@ -503,10 +503,6 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
// Filter out artificial instructions but leave in the LOCK_PREFIX so it is
// printed as a separate "instruction".
- if (Name.find("_Int") != Name.npos ||
- Name.find("Int_") != Name.npos)
- return FILTER_STRONG;
-
// Filter out instructions with segment override prefixes.
// They're too messy to handle now and we'll special case them if needed.
OpenPOWER on IntegriCloud