rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr41661.c

21 lines
213 B
C

/* PR tree-optimization/41661 */
/* { dg-do compile } */
/* { dg-options "-fno-early-inlining" } */
int g;
void foo (int x)
{
g = x;
}
void bar (double d)
{
foo (d == 1);
}
void baz (int a)
{
bar (1);
}