summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-02-19 01:39:49 +0000
committerCraig Topper <craig.topper@gmail.com>2012-02-19 01:39:49 +0000
commit28a713b20ad17f9a02d4677d8a2fea0edb208418 (patch)
tree4186c3aa45eff7e78dc9586328cbdd32bff279f3 /utils
parent507329912aa343b8a430a97cf2d8f92eecb6dc01 (diff)
downloadllvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.tar.gz
llvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.tar.bz2
llvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.tar.xz
Add vmfunc instruction to X86 assembler and disassembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index e5b10a7ec8..0055291368 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/utils/TableGen/X86RecognizableInstr.cpp
@@ -37,14 +37,15 @@ using namespace llvm;
MAP(F9, 42) \
MAP(D0, 45) \
MAP(D1, 46) \
- MAP(D8, 47) \
- MAP(D9, 48) \
- MAP(DA, 49) \
- MAP(DB, 50) \
- MAP(DC, 51) \
- MAP(DD, 52) \
- MAP(DE, 53) \
- MAP(DF, 54)
+ MAP(D4, 47) \
+ MAP(D8, 48) \
+ MAP(D9, 49) \
+ MAP(DA, 50) \
+ MAP(DB, 51) \
+ MAP(DC, 52) \
+ MAP(DD, 53) \
+ MAP(DE, 54) \
+ MAP(DF, 55)
// A clone of X86 since we can't depend on something that is generated.
namespace X86Local {