blob: 00c62f38952057cd7cec1e8ed130e5329c7a0739 [file] [log] [blame]
Dan Gohmanc8054d92009-09-09 00:09:15 +00001; RUN: llc < %s
Chris Lattner89126bd2008-01-17 06:54:09 +00002%f8 = type <8 x float>
3
4define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
David Blaikiea79ac142015-02-27 21:17:42 +00005 %p = load %f8, %f8* %P
6 %q = load %f8, %f8* %Q
Dan Gohmana5b96452009-06-04 22:49:04 +00007 %R = fadd %f8 %p, %q
Chris Lattner89126bd2008-01-17 06:54:09 +00008 store %f8 %R, %f8 *%S
9 ret void
10}
11