Dan Gohman | d5d4c87 | 2007-10-17 14:48:28 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | llc -march=x86-64 | grep test | count 1 |
2 | |||||
3 | define void @foo(i1 %c, <2 x float> %a, <2 x float> %b, <2 x float>* %p) { | ||||
4 | %x = select i1 %c, <2 x float> %a, <2 x float> %b | ||||
5 | store <2 x float> %x, <2 x float>* %p | ||||
6 | ret void | ||||
7 | } |