Temporarily revert r58979 and related patch. It's causing a failure in X86 bootstrap:
[oota-llvm.git] / test / CodeGen / X86 / vec_clear.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -mtriple=i386-apple-darwin | not grep and
2 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -mtriple=i386-apple-darwin | grep psrldq
3
4 define <4 x float> @test(<4 x float>* %v1) nounwind {
5         %tmp = load <4 x float>* %v1            ; <<4 x float>> [#uses=1]
6         %tmp15 = bitcast <4 x float> %tmp to <2 x i64>          ; <<2 x i64>> [#uses=1]
7         %tmp24 = and <2 x i64> %tmp15, bitcast (<4 x i32> < i32 0, i32 0, i32 -1, i32 -1 > to <2 x i64>)              ; <<2 x i64>> [#uses=1]
8         %tmp31 = bitcast <2 x i64> %tmp24 to <4 x float>                ; <<4 x float>> [#uses=1]
9         ret <4 x float> %tmp31
10 }
11