blob: 9c164e3a60faaaf86bfe162d70feafbb25ea42fc [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fno-ira-share-save-slots" } */
struct A {};
int foo();
struct A bar(double x)
{
double y;
if (foo())
y = 1 / x;
return bar(y);
}