Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr107301.c
blob: 5f0afcc0d10aa52cc0b30a4e30e2af40a9563090 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
__attribute__
((
pure
,
returns_twice
))
int
foo
(
int
x
)
{
int
a
;
a
=
x
?
3
:
0
;
x
/=
a
;
a
=
foo
(
x
);
if
(
x
==
a
)
__builtin_unreachable
();
return
0
;
}