diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-02-19 01:39:49 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-02-19 01:39:49 +0000 |
commit | 28a713b20ad17f9a02d4677d8a2fea0edb208418 (patch) | |
tree | 4186c3aa45eff7e78dc9586328cbdd32bff279f3 /utils | |
parent | 507329912aa343b8a430a97cf2d8f92eecb6dc01 (diff) | |
download | external_llvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.zip external_llvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.tar.gz external_llvm-28a713b20ad17f9a02d4677d8a2fea0edb208418.tar.bz2 |
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.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index e5b10a7..0055291 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 { |