aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/AsmParser
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-29 05:05:03 +0000
committerChris Lattner <sabre@nondot.org>2010-09-29 05:05:03 +0000
commit6f4202726339815c7167ef2f00858c766c9ffea9 (patch)
tree84cf28764f788a65b177cf28ff9e002ab91e4b2c /test/MC/AsmParser
parentf3654db4588884edbf52f139a2f713e45a8ed9b4 (diff)
downloadexternal_llvm-6f4202726339815c7167ef2f00858c766c9ffea9.zip
external_llvm-6f4202726339815c7167ef2f00858c766c9ffea9.tar.gz
external_llvm-6f4202726339815c7167ef2f00858c766c9ffea9.tar.bz2
fix rdar://8490728 - llvm-mc rejects gpr64 form of 'movmskpd'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115029 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser')
-rw-r--r--test/MC/AsmParser/X86/x86_instructions.s7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/MC/AsmParser/X86/x86_instructions.s b/test/MC/AsmParser/X86/x86_instructions.s
index 19702ce..d182917 100644
--- a/test/MC/AsmParser/X86/x86_instructions.s
+++ b/test/MC/AsmParser/X86/x86_instructions.s
@@ -459,3 +459,10 @@ cvttpd2dq 0xdeadbeef(%ebx,%ecx,8),%xmm5
// CHECK: cvttpd2dq 3735928559(%ebx,%ecx,8), %xmm5
// CHECK: encoding: [0x67,0x66,0x0f,0xe6,0xac,0xcb,0xef,0xbe,0xad,0xde]
+// rdar://8490728 - llvm-mc rejects 'movmskpd'
+movmskpd %xmm6, %rax
+// CHECK: movmskpd %xmm6, %rax
+// CHECK: encoding: [0x66,0x48,0x0f,0x50,0xc6]
+movmskpd %xmm6, %eax
+// CHECK: movmskpd %xmm6, %eax
+// CHECK: encoding: [0x66,0x0f,0x50,0xc6]