AArch64: Revert setting of elf class in linker stub.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-i386 / pr21997-1b.c
1 #include <stdio.h>
2
3 extern int protected;
4 extern int get_protected (void);
5 extern int* get_protected_p (void);
6
7 int
8 main ()
9 {
10
11 if (protected == get_protected ()
12 && &protected == get_protected_p ())
13 printf ("PASS\n");
14
15 return 0;
16 }
This page took 0.028939 seconds and 4 git commands to generate.