Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / setltk.ll
1 ; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
2
3 @j = global i32 -5, align 4
4 @k = global i32 10, align 4
5 @l = global i32 20, align 4
6 @m = global i32 10, align 4
7 @r1 = common global i32 0, align 4
8 @r2 = common global i32 0, align 4
9 @r3 = common global i32 0, align 4
10
11 define void @test() nounwind {
12 entry:
13   %0 = load i32* @j, align 4
14   %cmp = icmp slt i32 %0, 10
15   %conv = zext i1 %cmp to i32
16   store i32 %conv, i32* @r1, align 4
17 ; 16:   slti    $[[REGISTER:[0-9]+]], 10
18 ; 16:   move    $[[REGISTER]], $24
19   ret void
20 }