1; RUN: llc < %s -march=x86
2
3declare {x86_fp80, x86_fp80} @test()
4
5define void @call2(x86_fp80 *%P1, x86_fp80 *%P2) {
6  %a = call {x86_fp80,x86_fp80} @test()
7  %b = extractvalue {x86_fp80,x86_fp80} %a, 1
8  store x86_fp80 %b, x86_fp80* %P1
9br label %L
10
11L:
12  %c = extractvalue {x86_fp80,x86_fp80} %a, 0
13  store x86_fp80 %c, x86_fp80* %P2
14  ret void
15}
16