]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr38140.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr38140.c
CommitLineData
286ba5b3
JJ
1/* PR middle-end/38140 */
2/* { dg-do compile } */
3/* { dg-options "-O2 -fno-strict-aliasing" } */
4
5int foo (void *x)
6{
7 int (*fn) (int);
8 *(void **)&fn = x;
9 return fn (6);
10}