summaryrefslogtreecommitdiff
path: root/test/Assembler/vector-select.ll
blob: ae8358abf9a19be96285685280be1e27eb41a70e (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
; Rudimentary test of select on vectors returning vector of bool

; CHECK: @foo
; CHECK: select <4 x i1> %cond, <4 x i32> %a, <4 x i32> %b
define <4 x i32> @foo(<4 x i32> %a, <4 x i32> %b, <4 x i1> %cond) nounwind  {
entry:
  %cmp = select <4 x i1>  %cond, <4 x i32> %a, <4 x i32> %b
  ret <4 x i32> %cmp
}