diff options
author | Kay Tiong Khoo <kkhoo@perfwizard.com> | 2013-02-12 00:19:12 +0000 |
---|---|---|
committer | Kay Tiong Khoo <kkhoo@perfwizard.com> | 2013-02-12 00:19:12 +0000 |
commit | ab588efe420a9c3f9ad820d40db88f557661acdc (patch) | |
tree | acbece9242169e8a19373ed399d9746338188a26 /llvm/utils/TableGen/X86RecognizableInstr.cpp | |
parent | 5824a4f1b0962bfe7a80d382d0ed9ce2050d3d88 (diff) | |
download | bcm5719-llvm-ab588efe420a9c3f9ad820d40db88f557661acdc.tar.gz bcm5719-llvm-ab588efe420a9c3f9ad820d40db88f557661acdc.zip |
Added 0x0D to 2-byte opcode extension table for prefetch* variants
Fixed decode of existing 3dNow prefetchw instruction
Intel is scheduled to add a compatible prefetchw (same encoding) to future CPUs
llvm-svn: 174920
Diffstat (limited to 'llvm/utils/TableGen/X86RecognizableInstr.cpp')
-rw-r--r-- | llvm/utils/TableGen/X86RecognizableInstr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/X86RecognizableInstr.cpp b/llvm/utils/TableGen/X86RecognizableInstr.cpp index b99a6eb87ee..b00f7ea2bad 100644 --- a/llvm/utils/TableGen/X86RecognizableInstr.cpp +++ b/llvm/utils/TableGen/X86RecognizableInstr.cpp @@ -119,6 +119,7 @@ namespace X86Local { #define TWO_BYTE_EXTENSION_TABLES \ EXTENSION_TABLE(00) \ EXTENSION_TABLE(01) \ + EXTENSION_TABLE(0d) \ EXTENSION_TABLE(18) \ EXTENSION_TABLE(71) \ EXTENSION_TABLE(72) \ |