aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-08-01 21:54:09 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-08-01 21:54:09 +0000
commit55244ceac400dfb170d4df81029ddec9f38ad7cc (patch)
tree06f3f4b045360560a41091d32e7522df50337415 /test/CodeGen
parentaed890bee04cce1896a4230cd493774c9700f545 (diff)
Add v4f64 -> v2f32 fp_round support. Also add a testcase to exercise
the legalizer. This commit together with the two previous ones fixes PR10495. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136654 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/avx-256-cvt.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/X86/avx-256-cvt.ll b/test/CodeGen/X86/avx-256-cvt.ll
index 8bf67568b6..d97327906c 100644
--- a/test/CodeGen/X86/avx-256-cvt.ll
+++ b/test/CodeGen/X86/avx-256-cvt.ll
@@ -12,3 +12,10 @@ define <8 x i32> @funcB(<8 x float> %a) nounwind {
ret <8 x i32> %b
}
+; CHECK: vcvtpd2psy %ymm
+; CHECK-NEXT: vcvtpd2psy %ymm
+; CHECK-NEXT: vinsertf128 $1
+define <8 x float> @funcC(<8 x double> %b) nounwind {
+ %a = fptrunc <8 x double> %b to <8 x float>
+ ret <8 x float> %a
+}