Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr41661.c
blob: 658e4288b8dc5f3a2ede6da638513d6c99dffeb0 [
file
] [
log
] [
blame
]
/* 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
);
}