• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s
2
3%f8 = type <8 x float>
4
5define void @test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
6  %p = load %f8, %f8* %P
7  %q = load %f8, %f8* %Q
8  %R = fadd %f8 %p, %q
9  store %f8 %R, %f8 *%S
10  ret void
11}
12
13