blob: 44601d0c4024781a35b157fcce88b7bb419b905c [file] [log] [blame]
Chris Lattnerf51a9d42008-01-17 06:54:09 +00001; RUN: llvm-as < %s | llc
2%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 Gohmanae3a0be2009-06-04 22:49:04 +00007 %R = fadd %f8 %p, %q
Chris Lattnerf51a9d42008-01-17 06:54:09 +00008 store %f8 %R, %f8 *%S
9 ret void
10}
11