PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr65103-3.c
blobeddf20bc04be3d6410799eff15435a246d6f539a
1 /* { dg-do compile { target ia32 } } */
2 /* { dg-require-effective-target pie } */
3 /* { dg-options "-O2 -fPIE" } */
4 /* { dg-final { scan-assembler-not "GOTOFF," } } */
6 static int *data[100];
8 void test (long a, long b)
12 if( a < b )
14 data[a] = data[b];
15 a++;
18 while (a <= b);