b6407e67f27af7f2bdd4467020eefb9ba85acacd
[oota-llvm.git] / test / CodeGen / Mips / selTBtnezCmpi.ll
1 ; RUN: llc -march=mipsel -mcpu=mips16 -relocation-model=pic < %s | FileCheck %s -check-prefix=16
2
3 @i = global i32 1, align 4
4 @j = global i32 2, align 4
5 @a = global i32 5, align 4
6 @.str = private unnamed_addr constant [8 x i8] c"%i = 1\0A\00", align 1
7 @k = common global i32 0, align 4
8
9 define void @t() nounwind "target-cpu"="mips16" "target-features"="+mips16,+o32" {
10 entry:
11   %0 = load i32, i32* @a, align 4
12   %cmp = icmp ne i32 %0, 10
13   %1 = load i32, i32* @i, align 4
14   %2 = load i32, i32* @j, align 4
15   %cond = select i1 %cmp, i32 %1, i32 %2
16   store i32 %cond, i32* @i, align 4
17   ret void
18 }
19
20 ; 16:   cmpi    ${{[0-9]+}}, 10
21 ; 16:   btnez   $BB{{[0-9]+}}_{{[0-9]}}
22
23
24 attributes #0 = { nounwind "target-cpu"="mips16" "target-features"="+mips16,+o32" }
25
26