llvm-6502/test/CodeGen/ARM/select.ll
Rafael Espindola d520dd7a24 run llc with -march=arm in select.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29821 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-22 16:19:54 +00:00

18 lines
397 B
LLVM

; RUN: llvm-as < %s | llc -march=arm
int %f(int %a) {
entry:
%tmp = seteq int %a, 4 ; <bool> [#uses=1]
br bool %tmp, label %cond_false, label %cond_true
cond_true: ; preds = %entry
br label %return
cond_false: ; preds = %entry
br label %return
return: ; preds = %cond_false, %cond_true
%retval.0 = phi int [ 2, %cond_true ], [ 3, %cond_false ] ; <int> [#uses=1]
ret int %retval.0
}