summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2010-02-10 00:10:31 +0000
committerKevin Enderby <enderby@apple.com>2010-02-10 00:10:31 +0000
commit40fe18f66e7c94bda22bb3ad5fbef336fffd0f9d (patch)
tree1fdf77ee267b4a18f8d5a0daf47f076f1feabd46 /test
parent5d672cfab096390690a1a5f33b0057c4cf252c55 (diff)
downloadllvm-40fe18f66e7c94bda22bb3ad5fbef336fffd0f9d.tar.gz
llvm-40fe18f66e7c94bda22bb3ad5fbef336fffd0f9d.tar.bz2
llvm-40fe18f66e7c94bda22bb3ad5fbef336fffd0f9d.tar.xz
Fix the encoding of the movntdqa X86 instruction. It was missing the 0x66
prefix which is part of the opcode encoding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95729 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/AsmParser/X86/x86_32-encoding.s2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/MC/AsmParser/X86/x86_32-encoding.s b/test/MC/AsmParser/X86/x86_32-encoding.s
index e38df9e3b9..e029ded0d1 100644
--- a/test/MC/AsmParser/X86/x86_32-encoding.s
+++ b/test/MC/AsmParser/X86/x86_32-encoding.s
@@ -9,3 +9,5 @@ sbbb $0xfe,0xdeadbeef(%ebx,%ecx,8)
psllw 69, %mm3
# CHECK: encoding: [0x0f,0xf1,0x1d,0x45,0x00,0x00,0x00]
+movntdqa 0xdeadbeef(%ebx,%ecx,8),%xmm5
+# CHECK: encoding: [0x66,0x0f,0x38,0x2a,0xac,0xcb,0xef,0xbe,0xad,0xde]