Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / rem.ll
1 ; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=16
2
3 @iiii = global i32 103, align 4
4 @jjjj = global i32 -4, align 4
5 @kkkk = common global i32 0, align 4
6
7
8 define void @test() nounwind {
9 entry:
10   %0 = load i32* @iiii, align 4
11   %1 = load i32* @jjjj, align 4
12   %rem = srem i32 %0, %1
13 ; 16:   div     $zero, ${{[0-9]+}}, ${{[0-9]+}}
14 ; 16:   mfhi    ${{[0-9]+}}
15   store i32 %rem, i32* @kkkk, align 4
16   ret void
17 }
18
19