blob: e99342478c56c7e01f2f49002550a50a8f58935b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Test whether variables with relocations aren't put into
mergeable sections even with -fmerge-all-constants. */
/* { dg-do compile } */
/* { dg-options "-O2 -fmerge-all-constants" } */
/* { dg-final { scan-assembler-not ".rodata.cst" } } */
int foo (int a)
{
static void * const ar[] = { &&l2 };
void *p = ar[a];
goto *p;
l2:
return 2;
}
|