1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/CodeGen/Thumb2/emit-unwinding.ll
Diogo Sampaio 9d97314f4a [ARM][Thumb][FIX] Add unwinding information to t4
Summary:
Add missing part of patch D71361. Now that the stack-frame
can be operated using a addw/subw instruction, they should
appear in the unwinding list.

Reviewers: dmgreen, efriedma

Reviewed By: dmgreen

Subscribers: kristof.beyls, hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D72000
2019-12-30 15:59:48 +00:00

27 lines
611 B
LLVM

; RUN: llc -mtriple thumbv7em-apple-unknown-eabi-macho %s -o - -O0 | FileCheck %s
; CHECK: add r7, sp, #{{[1-9]+}}
define void @foo1() {
call void asm sideeffect "", "~{r4}"()
call void @foo2()
ret void
}
declare void @foo2()
; CHECK: _bar:
; CHECK-NEXT: .cfi_startproc
; CHECK-NEXT: @ %bb.0:
; CHECK-NEXT: subw sp, sp, #3800
; CHECK-NEXT: .cfi_def_cfa_offset 3800
; CHECK-NEXT: addw sp, sp, #3800
; CHECK-NEXT: bx lr
; CHECK-NEXT: .cfi_endproc
define void @bar() {
%a1 = alloca [3800 x i8], align 4
%p = getelementptr inbounds [3800 x i8], [3800 x i8]* %a1, i32 0, i32 0
ret void
}