aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2009-06-05-sitofpCrash.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/2009-06-05-sitofpCrash.ll')
-rw-r--r--test/CodeGen/X86/2009-06-05-sitofpCrash.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/X86/2009-06-05-sitofpCrash.ll b/test/CodeGen/X86/2009-06-05-sitofpCrash.ll
deleted file mode 100644
index e361804d61ba..000000000000
--- a/test/CodeGen/X86/2009-06-05-sitofpCrash.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc < %s -march=x86 -mattr=+sse
-; PR2598
-
-define <2 x float> @a(<2 x i32> %i) nounwind {
- %r = sitofp <2 x i32> %i to <2 x float>
- ret <2 x float> %r
-}
-
-define <2 x i32> @b(<2 x float> %i) nounwind {
- %r = fptosi <2 x float> %i to <2 x i32>
- ret <2 x i32> %r
-}
-