blob: ecb825b00bd8d1b6ca9364409396f23d8a632476 [file] [log] [blame]
Tanya Lattner632e88a2008-02-21 07:42:26 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattner632e88a2008-02-21 07:42:26 +00003define void @test(i32 %C, <4 x float>* %A, <4 x float>* %B) {
4 %tmp = load <4 x float>* %A ; <<4 x float>> [#uses=1]
5 %tmp3 = load <4 x float>* %B ; <<4 x float>> [#uses=2]
Dan Gohman7ce405e2009-06-04 22:49:04 +00006 %tmp9 = fmul <4 x float> %tmp3, %tmp3 ; <<4 x float>> [#uses=1]
Tanya Lattner632e88a2008-02-21 07:42:26 +00007 %tmp.upgrd.1 = icmp eq i32 %C, 0 ; <i1> [#uses=1]
8 %iftmp.38.0 = select i1 %tmp.upgrd.1, <4 x float> %tmp9, <4 x float> %tmp ; <<4 x float>> [#uses=1]
9 store <4 x float> %iftmp.38.0, <4 x float>* %A
10 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000011}
Tanya Lattner632e88a2008-02-21 07:42:26 +000012