diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-01-02 18:20:48 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-01-02 18:20:48 +0000 |
commit | eabdbcb8a9729734bd866959874cb593a507ccb0 (patch) | |
tree | 59e1ffd94e2d847df6234dab523303f359de52cc /llvm/utils/TableGen/X86RecognizableInstr.cpp | |
parent | 6d80b3c15df0c25e3d8b5379ed4ccca1992a0f44 (diff) | |
download | bcm5719-llvm-eabdbcb8a9729734bd866959874cb593a507ccb0.tar.gz bcm5719-llvm-eabdbcb8a9729734bd866959874cb593a507ccb0.zip |
Mark PUSHFS64/PUSHGS64/POPFS64/POPGS64 as In64BitMode and remove the hack from the disassembler table builder.
llvm-svn: 198327
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp index 6ae7c3820e4..63a92707336 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.cpp +++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp @@ -277,10 +277,6 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables, } // FIXME: These instructions aren't marked as 64-bit in any way Is64Bit |= Rec->getName() == "JMP64pcrel32" || - Rec->getName() == "POPFS64" || - Rec->getName() == "POPGS64" || - Rec->getName() == "PUSHFS64" || - Rec->getName() == "PUSHGS64" || Rec->getName() == "REX64_PREFIX" || Rec->getName().find("MOV64") != Name.npos || Rec->getName().find("PUSH64") != Name.npos || |