Mercurial > hg > CbC > CbC_llvm
view test/Assembler/vector-select.ll @ 115:95b91bc9a2f8
cleanupflag
author | mir3636 |
---|---|
date | Fri, 05 Aug 2016 19:04:52 +0900 |
parents | 54457678186b |
children |
line wrap: on
line source
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s ; RUN: verify-uselistorder %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 }