xref: /llvm-project/llvm/test/CodeGen/ARM/thumb-litpool.ll (revision bed1c7f061aa12417aa081e334afdba45767b938)
1; RUN: llc -mtriple=thumbv6m-apple-macho %s -relocation-model=static -o - | FileCheck %s
2; RUN: llc -mtriple=thumbv6m-apple-macho %s -relocation-model=pic -o - | FileCheck %s
3
4@var = global i8 zeroinitializer
5
6declare void @callee(ptr)
7
8define void @foo() minsize {
9; CHECK-LABEL: foo:
10; CHECK: ldr {{r[0-7]}}, LCPI0_0
11  call void @callee(ptr @var)
12  call void asm sideeffect "", "~{r0},~{r1},~{r2},~{r3},~{r4},~{r5},~{r6},~{r7}"()
13  call void @callee(ptr @var)
14  ret void
15}
16