]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr41619.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr41619.c
CommitLineData
e90b336f
JL
1/* { dg-do compile } */
2/* { dg-options "-O2 -fno-ira-share-save-slots" } */
3
4struct A {};
5
6int foo();
7
8struct A bar(double x)
9{
10 double y;
11 if (foo())
12 y = 1 / x;
13 return bar(y);
14}