Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr101394.c
blob: 87fbdadc1525ba79a4d370e02f99701218476411 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
a
,
b
,
c
,
d
;
void
h
();
int
e
()
__attribute__
((
returns_twice
));
void
f
()
{
int
*
g
=
(
int
*)(
__INTPTR_TYPE__
)
c
;
if
(
b
)
{
h
();
g
--;
if
(
a
)
if
(
d
)
h
();
}
if
(
g
++)
e
();
c
=
(
__INTPTR_TYPE__
)
g
;
}