x86: Only allow S + A relocations against absolute symbol
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / pr25754-2a.c
1 #include <stdio.h>
2 #include <bfd_stdint.h>
3
4 extern uintptr_t bar;
5
6 uintptr_t *
7 __attribute__ ((noinline, noclone))
8 get_bar (void)
9 {
10 return &bar;
11 }
12
13 int
14 main ()
15 {
16 if ((uintptr_t) get_bar () == 0xfffffff0U)
17 printf ("PASS\n");
18 return 0;
19 }
20 #include <stdio.h>
This page took 0.03173 seconds and 5 git commands to generate.