aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-29 02:24:57 +0000
committerChris Lattner <sabre@nondot.org>2010-09-29 02:24:57 +0000
commit0c04e4f58f8d1ad4604de17324170fa1f4e43418 (patch)
tree039cfd1f1ca1b59b6567b57855c56ededf7bb456 /test/MC
parent7c51a3172cf5104ebeaef22f1366fa634ca00d85 (diff)
downloadexternal_llvm-0c04e4f58f8d1ad4604de17324170fa1f4e43418.zip
external_llvm-0c04e4f58f8d1ad4604de17324170fa1f4e43418.tar.gz
external_llvm-0c04e4f58f8d1ad4604de17324170fa1f4e43418.tar.bz2
implement rdar://8456382 - cvtsd2si support, by removing some Int_ prefixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC')
-rw-r--r--test/MC/AsmParser/X86/x86_instructions.s10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/MC/AsmParser/X86/x86_instructions.s b/test/MC/AsmParser/X86/x86_instructions.s
index bf33ea3..cff56cc 100644
--- a/test/MC/AsmParser/X86/x86_instructions.s
+++ b/test/MC/AsmParser/X86/x86_instructions.s
@@ -415,3 +415,13 @@ fstsw %ax
fstsw (%rax)
// CHECK: wait
// CHECK: fnstsw (%rax)
+
+
+// rdar://8456382 - cvtsd2si support.
+cvtsd2si %xmm1, %rax
+// CHECK: cvtsd2si %xmm1, %rax
+// CHECK: encoding: [0xf2,0x48,0x0f,0x2d,0xc1]
+cvtsd2si %xmm1, %eax
+// CHECK: cvtsd2si %xmm1, %eax
+// CHECK: encoding: [0xf2,0x0f,0x2d,0xc1]
+