aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM64/compact-unwind-unhandled-cfi.S
blob: 250732d6e8426ac6100519c924f4ec1c313d90ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-mc -triple arm64-apple-darwin -filetype=obj -o /dev/null %s

        .text
        .globl _foo
        .cfi_startproc
_foo:
        stp x29, x30, [sp, #-16]!
 .cfi_adjust_cfa_offset 16

        ldp x29, x30, [sp], #16
 .cfi_adjust_cfa_offset -16
        .cfi_restore x29
        .cfi_restore x30

        ret

        .cfi_endproc