summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-01-02 17:41:40 +0000
committerCraig Topper <craig.topper@gmail.com>2014-01-02 17:41:40 +0000
commitd4e0bc4316424e543006af1540abce81999279c5 (patch)
tree0a3a2b61a02be5d2795c4fdff15f03be1c40d6ca /utils
parente625100c6a1a65e5739c2a3b2d2b5f758f5dcff6 (diff)
downloadllvm-d4e0bc4316424e543006af1540abce81999279c5.tar.gz
llvm-d4e0bc4316424e543006af1540abce81999279c5.tar.bz2
llvm-d4e0bc4316424e543006af1540abce81999279c5.tar.xz
Remove unnecessary stirng comparison from disassembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index a4157d9725..6ae7c3820e 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/utils/TableGen/X86RecognizableInstr.cpp
@@ -277,7 +277,6 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
}
// FIXME: These instructions aren't marked as 64-bit in any way
Is64Bit |= Rec->getName() == "JMP64pcrel32" ||
- Rec->getName() == "MASKMOVDQU64" ||
Rec->getName() == "POPFS64" ||
Rec->getName() == "POPGS64" ||
Rec->getName() == "PUSHFS64" ||