aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/2011-02-27-Fpextend.ll
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-02-28 12:30:47 +0000
committerDuncan Sands <baldrick@free.fr>2011-02-28 12:30:47 +0000
commit443612e165ddc884bfe006cfb3d94746b6ba92e4 (patch)
tree6253a7c9b15b8e999fe73598ea9f17ca177275f5 /test/CodeGen/X86/2011-02-27-Fpextend.ll
parentf7b2a9d7df0020d5120fbeb3232f9dce57dec6e7 (diff)
downloadexternal_llvm-443612e165ddc884bfe006cfb3d94746b6ba92e4.zip
external_llvm-443612e165ddc884bfe006cfb3d94746b6ba92e4.tar.gz
external_llvm-443612e165ddc884bfe006cfb3d94746b6ba92e4.tar.bz2
Make this test x86 specific because the ARM backend can't handle it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2011-02-27-Fpextend.ll')
-rw-r--r--test/CodeGen/X86/2011-02-27-Fpextend.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2011-02-27-Fpextend.ll b/test/CodeGen/X86/2011-02-27-Fpextend.ll
new file mode 100644
index 0000000..61df3a7
--- /dev/null
+++ b/test/CodeGen/X86/2011-02-27-Fpextend.ll
@@ -0,0 +1,7 @@
+; RUN: llc -march=x86-64 < %s
+; PR9309
+
+define <4 x double> @f_fu(<4 x float>) nounwind {
+ %float2double.i = fpext <4 x float> %0 to <4 x double>
+ ret <4 x double> %float2double.i
+}