summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-01-05 01:35:51 +0000
committerCraig Topper <craig.topper@gmail.com>2014-01-05 01:35:51 +0000
commite43a0f801506cbc2f5a4e5ac020d23d9038aff4d (patch)
tree38266bc0dea7b5c4f0599339fd5cd577469a4e09 /utils
parent62fe07a1ac8ec02f60a73a4b6914f0ef964f62ef (diff)
downloadllvm-e43a0f801506cbc2f5a4e5ac020d23d9038aff4d.tar.gz
llvm-e43a0f801506cbc2f5a4e5ac020d23d9038aff4d.tar.bz2
llvm-e43a0f801506cbc2f5a4e5ac020d23d9038aff4d.tar.xz
Mark the 64-bit x86 push/pop instructions as In64BitMode. Mark the corresponding 32-bit versions with the same encodings Not64BitMode. Remove hack from tablegen disassembler table emitter. Fix bad test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index ee631302d0..d9ad269623 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/utils/TableGen/X86RecognizableInstr.cpp
@@ -274,9 +274,6 @@ RecognizableInstr::RecognizableInstr(DisassemblerTables &tables,
break;
}
}
- // FIXME: These instructions aren't marked as 64-bit in any way
- Is64Bit |= Rec->getName().find("PUSH64") != Name.npos ||
- Rec->getName().find("POP64") != Name.npos;
ShouldBeEmitted = true;
}