aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20021029-1.c
blob: 468f9c055f45a37eb257ad0c5be17078f231aa71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Test whether difference of local labels doesn't force
   variables into writable sections.  */
/* { dg-do compile } */
/* { dg-options "-O2 -fpic" } */
/* { dg-final { scan-assembler-not ".data.rel.ro.local" } } */

int foo (int a)
{
  static const int ar[] = { &&l1 - &&l1, &&l2 - &&l1 };
  void *p = &&l1 + ar[a];
  goto *p;
  l1:
    return 1;
  l2:
    return 2;
}