blob: 82ed2f5a9d92366b4622f82202a389b825de9d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# REQUIRES: aarch64
# RUN: llvm-mc -filetype=obj -triple aarch64 -mattr=+mte %s -o %t.o
# RUN: ld.lld --eh-frame-hdr %t.o -o %t
# RUN: llvm-objdump --dwarf=frames %t | FileCheck %s
# CHECK: Augmentation: "zRG"
.text
.globl WithUnwind
.p2align 2
.type WithUnwind,@function
WithUnwind:
.cfi_startproc
.cfi_mte_tagged_frame
ret
.Lfunc_end0:
.size WithUnwind, .Lfunc_end0-WithUnwind
.cfi_endproc
|