xref: /aosp_15_r20/external/llvm/test/CodeGen/Thumb2/emit-unwinding.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc -mtriple thumbv7em-apple-unknown-eabi-macho %s -o - -O0 | FileCheck %s
2
3; CHECK: add r7, sp, #{{[1-9]+}}
4
5define void @foo1() {
6  call void asm sideeffect "", "~{r4}"()
7  call void @foo2()
8  ret void
9}
10
11declare void @foo2()
12