]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr57184.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr57184.c
CommitLineData
43303d6f
JJ
1/* PR debug/57184 */
2/* { dg-do compile } */
3/* { dg-options "-O2 -g" } */
4
5struct S {};
6void bar (struct S *const);
7static struct S *const c = &(struct S) {};
8
9void
10foo (void)
11{
12 bar (c);
13}