blob: 634b5621aa99d491ba78af46fdeacf565e0274f3 [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s
Chris Lattner553efea2008-01-17 06:54:09 +00002%f8 = type <8 x float>
3
4define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
5 %p = load %f8* %P
6 %q = load %f8* %Q
Dan Gohman7ce405e2009-06-04 22:49:04 +00007 %R = fadd %f8 %p, %q
Chris Lattner553efea2008-01-17 06:54:09 +00008 store %f8 %R, %f8 *%S
9 ret void
10}
11