aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/compat/sdata-1_main.c
blob: 68e9f8f09ad3a9c82d0d0fae86f574b516a9d2cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Check that sdata qualification doesn't produce out-of-range relocations
   and that compilers agree on the way these declarations are handled.  */

extern void sdata_1_x (void);
extern void exit (int);

int
main ()
{
  sdata_1_x ();
  exit (0);
}