Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr45412.c
blob: 339854b59af8b474463d2278be21edad6caebf85 [
file
] [
log
] [
blame
]
extern
void
baz
(
int
,
int
,
int
);
int
j
;
int
bar
(
void
)
{
int
n
=
0
,
*
np
=
&
n
;
if
(
j
)
baz
(
0
,
0
,
0
);
if
(
j
)
baz
(
0
,
0
,
0
);
return
n
;
}
void
foo
(
void
)
{
bar
();
bar
();
}