Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr103458.c
blob: 3fd3b5fd2ffbc46d47e309bd34d389753875f1c2 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-Wno-div-by-zero" } */
__attribute__
((
returns_twice
))
int
bar
(
void
);
void
foo
(
int
*
p
,
int
x
)
{
*
p
=
0
;
while
(*
p
<
1
)
{
x
=
0
;
while
(
x
<
1
)
bar
();
x
/=
0
;
}
foo
(
p
,
x
);
}