Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.dg / 20021029-1.c
blobbc330c56f4939b121d02cb5521b820296f880319
1 /* Test whether difference of local labels doesn't force
2 variables into writable sections. */
3 /* { dg-do compile { target fpic } } */
4 /* { dg-options "-O2 -fpic" } */
5 /* { dg-options "-O2 -fpic -mpt-fixed" { target sh64*-*-* } } */
6 /* { dg-final { scan-assembler-not ".data.rel.ro.local" } } */
8 int foo (int a)
10 static const int ar[] = { &&l1 - &&l1, &&l2 - &&l1 };
11 void *p = &&l1 + ar[a];
12 goto *p;
13 l1:
14 return 1;
15 l2:
16 return 2;