mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
90c6d27935
llvm-svn: 154281
12 lines
375 B
LLVM
12 lines
375 B
LLVM
; 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
|
|
}
|
|
|