summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-18 20:49:22 +0000
committerChris Lattner <sabre@nondot.org>2009-04-18 20:49:22 +0000
commit9dcab2fe8e91c580d30ca68eb7d541250db1a0c6 (patch)
treee00ea8f3a2f20397c11d8b99d5b4459d1f1353b4 /test
parent2f992d13ea0ccfe3f9ce359b4c534d9b34b0e7cd (diff)
downloadllvm-9dcab2fe8e91c580d30ca68eb7d541250db1a0c6.tar.gz
llvm-9dcab2fe8e91c580d30ca68eb7d541250db1a0c6.tar.bz2
llvm-9dcab2fe8e91c580d30ca68eb7d541250db1a0c6.tar.xz
testcase for PR3898
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69473 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/XCore/2009-03-27-v2f64-param.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/XCore/2009-03-27-v2f64-param.ll b/test/CodeGen/XCore/2009-03-27-v2f64-param.ll
new file mode 100644
index 0000000000..e834d66df2
--- /dev/null
+++ b/test/CodeGen/XCore/2009-03-27-v2f64-param.ll
@@ -0,0 +1,6 @@
+; RUN: llvm-as < %s | llc -march=xcore
+; PR3898
+
+define i32 @vector_param(<2 x double> %x) nounwind {
+ ret i32 1;
+}