1 ; RUN: rm -rf %t && split-file %s %t && cd %t
5 ; RUN: llc -mtriple=aarch64-linux ok.ll -o - | \
6 ; RUN: FileCheck %s --check-prefix=ASM
7 ; RUN: llc -mtriple=aarch64-linux ok.ll -filetype=obj -o - | \
8 ; RUN: llvm-readelf --notes - | FileCheck %s --check-prefix=OBJ
10 !llvm.module.flags = !{!0, !1}
12 !0 = !{i32 1, !"aarch64-elf-pauthabi-platform", i32 268435458}
13 !1 = !{i32 1, !"aarch64-elf-pauthabi-version", i32 85}
15 ; ASM: .section .note.gnu.property,"a",@note
16 ; ASM-NEXT: .p2align 3, 0x0
20 ; ASM-NEXT: .asciz "GNU"
21 ; 3221225473 = 0xc0000001 = GNU_PROPERTY_AARCH64_FEATURE_PAUTH
22 ; ASM-NEXT: .word 3221225473
24 ; ASM-NEXT: .xword 268435458
27 ; OBJ: Displaying notes found in: .note.gnu.property
28 ; OBJ-NEXT: Owner Data size Description
29 ; OBJ-NEXT: GNU 0x00000018 NT_GNU_PROPERTY_TYPE_0 (property note)
30 ; OBJ-NEXT: AArch64 PAuth ABI core info: platform 0x10000002 (llvm_linux), version 0x55 (PointerAuthIntrinsics, !PointerAuthCalls, PointerAuthReturns, !PointerAuthAuthTraps, PointerAuthVTPtrAddressDiscrimination, !PointerAuthVTPtrTypeDiscrimination, PointerAuthInitFini)
32 ; ERR: either both or no 'aarch64-elf-pauthabi-platform' and 'aarch64-elf-pauthabi-version' module flags must be present
36 ; RUN: not llc -mtriple=aarch64-linux err1.ll 2>&1 -o - | \
37 ; RUN: FileCheck %s --check-prefix=ERR
39 !llvm.module.flags = !{!0}
41 !0 = !{i32 1, !"aarch64-elf-pauthabi-platform", i32 2}
45 ; RUN: not llc -mtriple=aarch64-linux err2.ll 2>&1 -o - | \
46 ; RUN: FileCheck %s --check-prefix=ERR
48 !llvm.module.flags = !{!0}
50 !0 = !{i32 1, !"aarch64-elf-pauthabi-version", i32 31}