Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000504-1.c
blob: 1941bb34da580389ddd46be3d840c8d8eba61827 [
file
] [
log
] [
blame
]
struct
foo
{
int
a
;
int
b
;
};
int
func
(
struct
foo
*
foo
,
int
a
)
{
if
(
foo
->
b
==
0
)
{
int
ret
=
foo
->
a
=
a
;
if
(
a
>=
0
)
foo
->
a
=
a
;
return
(
ret
);
}
return
(
0
);
}