summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/X86RecognizableInstr.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-01-04 22:29:41 +0000
committerCraig Topper <craig.topper@gmail.com>2014-01-04 22:29:41 +0000
commitbc281ad8c16b2323b601e6ab6c566d150477df8c (patch)
treef6b7cf59bc8b964a28f5b149edbf3f0c1ab8407c /llvm/utils/TableGen/X86RecognizableInstr.cpp
parent634b9dd76812ff2222c779b842ec32c7a035c850 (diff)
downloadbcm5719-llvm-bc281ad8c16b2323b601e6ab6c566d150477df8c.tar.gz
bcm5719-llvm-bc281ad8c16b2323b601e6ab6c566d150477df8c.zip
Tag x86 move to/from debug/control registers with Not64BitMode/In64BitMode. Remove disassembler hack.
llvm-svn: 198515
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r--llvm/utils/TableGen/X86RecognizableInstr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp
index 2fa5a127a23..ee631302d08 100644
--- a/llvm/utils/TableGen/X86RecognizableInstr.cpp
+++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp
@@ -275,8 +275,7 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
}
}
// FIXME: These instructions aren't marked as 64-bit in any way
- Is64Bit |= Rec->getName().find("MOV64") != Name.npos ||
- Rec->getName().find("PUSH64") != Name.npos ||
+ Is64Bit |= Rec->getName().find("PUSH64") != Name.npos ||
Rec->getName().find("POP64") != Name.npos;
ShouldBeEmitted = true;
OpenPOWER on IntegriCloud