gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / testsuite / gnu_property_b.S
1 #define NT_GNU_PROPERTY_TYPE_0 5
2
3 #define GNU_PROPERTY_STACK_SIZE 1
4 #define GNU_PROPERTY_NO_COPY_ON_PROTECTED 2
5 #define GNU_PROPERTY_X86_ISA_1_USED 0xc0000000
6 #define GNU_PROPERTY_X86_ISA_1_NEEDED 0xc0000001
7 #define GNU_PROPERTY_X86_FEATURE_1_AND 0xc0000002
8
9 #if __SIZEOF_PTRDIFF_T__ == 8
10 # define ALIGN 3
11 #elif __SIZEOF_PTRDIFF_T__ == 4
12 # define ALIGN 2
13 #endif
14
15 .section ".note.gnu.property", "a"
16 .p2align ALIGN
17 .long 1f - 0f /* name length */
18 .long 3f - 2f /* data length */
19 .long NT_GNU_PROPERTY_TYPE_0 /* note type */
20 0: .asciz "GNU" /* vendor name */
21 1:
22 .p2align ALIGN
23 2: .long GNU_PROPERTY_NO_COPY_ON_PROTECTED /* pr_type. */
24 .long 0 /* pr_datasz. */
25 .p2align ALIGN
26 .long GNU_PROPERTY_X86_ISA_1_USED
27 .long 4
28 .byte 0x01,0x11,0x00,0x00
29 .p2align ALIGN
30 .long GNU_PROPERTY_X86_ISA_1_NEEDED
31 .long 4
32 .byte 0x01,0x11,0x00,0x00
33 .p2align ALIGN
34 .long GNU_PROPERTY_X86_FEATURE_1_AND
35 .long 4
36 .byte 0x03,0x00,0x00,0x00
37 .p2align ALIGN
38 3:
This page took 0.032331 seconds and 4 git commands to generate.