1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00
llvm-mirror/test/Regression/CodeGen/ARM/select.ll

9 lines
163 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=arm
2006-08-22 08:43:24 +02:00
int %f(int %a) {
entry:
%tmp = seteq int %a, 4 ; <bool> [#uses=1]
%tmp1 = select bool %tmp, int 2, int 3
ret int %tmp1
}