Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr106497.c
blob: 601200de9e3257b1193f38ecce3f4883f8ac2129 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-fno-tree-dce" } */
int
n
;
__attribute__
((
pure
,
returns_twice
))
int
bar
(
void
);
int
foo
(
int
x
)
{
n
=
0
;
bar
();
if
(
x
&&
n
)
return
0
;
foo
(
x
);
}