]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-i386/pr22001-1b.c
gdb, gdbserver, python, testsuite: Remove MPX.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-i386 / pr22001-1b.c
CommitLineData
7073b5b9
L
1#include <stdio.h>
2
3extern int copy;
4extern int get_copy (void);
5extern int* get_copy_p (void);
6
7int
8main ()
9{
10 if (copy == get_copy () && &copy == get_copy_p ())
11 printf ("PASS\n");
12
13 return 0;
14}