From 9dd48c8ed47728ea35a225f4da793ba3af683f5c Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Thu, 2 Jan 2014 17:28:14 +0000 Subject: 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 --- llvm/utils/TableGen/X86RecognizableInstr.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp') 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. -- cgit v1.2.3