1 ; RUN: llc -mtriple i686-pc-linux < %s | FileCheck %s --check-prefix=X86
2 ; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck %s --check-prefix=X86_64
3 ; RUN: llc -mtriple x86_64-pc-linux-gnux32 < %s | FileCheck %s --check-prefix=X86
5 ; This test checks that the compiler emits a .note.gnu.property section for
6 ; modules with "cf-protection" module flags.
8 ; X86: .section .note.gnu.property,"a",@note
13 ; X86-NEXT: .asciz "GNU"
14 ; X86-NEXT: .long 3221225474
17 ; X86-NEXT: .p2align 2
19 ; X86_64: .section .note.gnu.property,"a",@note
20 ; X86_64-NEXT: .p2align 3
21 ; X86_64-NEXT: .long 4
22 ; X86_64-NEXT: .long 16
23 ; X86_64-NEXT: .long 5
24 ; X86_64-NEXT: .asciz "GNU"
25 ; X86_64-NEXT: .long 3221225474
26 ; X86_64-NEXT: .long 4
27 ; X86_64-NEXT: .long 3
28 ; X86_64-NEXT: .p2align 3
30 !llvm.module.flags = !{!0, !1}
32 !0 = !{i32 8, !"cf-protection-return", i32 1}
33 !1 = !{i32 8, !"cf-protection-branch", i32 1}