Make this test x86 specific because the ARM backend can't handle it.
authorDuncan Sands <baldrick@free.fr>
Mon, 28 Feb 2011 12:30:47 +0000 (12:30 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 28 Feb 2011 12:30:47 +0000 (12:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126650 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/2011-02-27-Fpextend.ll [deleted file]
test/CodeGen/X86/2011-02-27-Fpextend.ll [new file with mode: 0644]

diff --git a/test/CodeGen/Generic/2011-02-27-Fpextend.ll b/test/CodeGen/Generic/2011-02-27-Fpextend.ll
deleted file mode 100644 (file)
index 38a1e4e..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-; RUN: llc < %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
-}
diff --git a/test/CodeGen/X86/2011-02-27-Fpextend.ll b/test/CodeGen/X86/2011-02-27-Fpextend.ll
new file mode 100644 (file)
index 0000000..61df3a7
--- /dev/null
@@ -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
+}