aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/got1.c
blob: 46a67fb9b4ce7cc02e3b26d06723908bc1a13c64 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-Os -fpic" }  */
/* { dg-final { scan-assembler "GOT_PREL" } } */

extern int x;
int foo(int j)
{
  int t = x;
  x = j;
  return t;
}