blob: 46a67fb9b4ce7cc02e3b26d06723908bc1a13c64 [file] [log] [blame]
/* { dg-options "-Os -fpic" } */
/* { dg-final { scan-assembler "GOT_PREL" } } */
extern int x;
int foo(int j)
{
int t = x;
x = j;
return t;
}