Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / Assembler / vector-select.ll
blob87af602aaf598974323237ef501f4648a8e31ed2
1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | grep select
2 ; rudimentary test of select on vectors returning vector of bool
4 define <4 x i32> @foo(<4 x i32> %a, <4 x i32> %b,
5     <4 x i1> %cond) nounwind  {
6 entry:
7   %cmp = select <4 x i1>  %cond, <4 x i32> %a, <4 x i32> %b 
8                              ; <4 x i32> [#uses=1]
9   ret <4 x i32> %cmp