blob: 6e2f6e665deb7d2b15a2aa220da2807366112301 [file] [log] [blame]
Dan Gohmand5d4c872007-10-17 14:48:28 +00001; RUN: llvm-as < %s | llc -march=x86-64 | grep test | count 1
2
3define 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}