Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / tls16_2.ll
1 ; RUN: llc  -march=mipsel -mcpu=mips16 -relocation-model=pic -O3 < %s | FileCheck %s -check-prefix=PIC16
2
3 @f.i = internal thread_local unnamed_addr global i32 1, align 4
4
5 define i8* @f(i8* nocapture %a) nounwind {
6 entry:
7   %0 = load i32* @f.i, align 4
8   %inc = add nsw i32 %0, 1
9   store i32 %inc, i32* @f.i, align 4
10   %1 = inttoptr i32 %inc to i8*
11 ; PIC16: addiu  ${{[0-9]+}}, %tlsldm(f.i)
12   ret i8* %1
13 }
14
15