summaryrefslogtreecommitdiff
path: root/utils
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
commit29d56f68c6a2cd4570588ee62e4355ead31ea174 (patch)
tree0ae425c1c16bae3d134cc11cb7cf81f110e2efe6 /utils
parentccd36c4c54eb88c4125c9aafe824d8f52022283c (diff)
downloadllvm-29d56f68c6a2cd4570588ee62e4355ead31ea174.tar.gz
llvm-29d56f68c6a2cd4570588ee62e4355ead31ea174.tar.bz2
llvm-29d56f68c6a2cd4570588ee62e4355ead31ea174.tar.xz
Tag x86 move to/from debug/control registers with Not64BitMode/In64BitMode. Remove disassembler hack.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index 2fa5a127a2..ee631302d0 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/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;