Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20070212-1.c
blob: efda7f9cf66867f256f5d0e34a683951f41aeb14 [
file
] [
log
] [
blame
]
struct
f
{
int
i
;
};
int
g
(
int
i
,
int
c
,
struct
f
*
ff
,
int
*
p
)
{
int
*
t
;
if
(
c
)
t
=
&
i
;
else
t
=
&
ff
->
i
;
*
p
=
0
;
return
*
t
;
}
extern
void
abort
(
void
);
int
main
()
{
struct
f f
;
f
.
i
=
1
;
if
(
g
(
5
,
0
,
&
f
,
&
f
.
i
)
!=
0
)
abort
();
return
0
;
}