Author: lattner
Date: Thu Jan 17 00:54:09 2008
New Revision: 46124

URL: http://llvm.org/viewvc/llvm-project?rev=46124&view=rev
Log:
add testcase that has been sitting in my tree for awhile.

Added:
    llvm/trunk/test/CodeGen/Generic/v-split.ll

Added: llvm/trunk/test/CodeGen/Generic/v-split.ll
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Generic/v-split.ll?rev=46124&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/Generic/v-split.ll (added)
+++ llvm/trunk/test/CodeGen/Generic/v-split.ll Thu Jan 17 00:54:09 2008
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc
+%f8 = type <8 x float>
+
+define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
+  %p = load %f8* %P
+  %q = load %f8* %Q
+  %R = add %f8 %p, %q
+  store %f8 %R, %f8 *%S
+  ret void
+}
+


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to