Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
forgetcc.c
blob: 7738139d591cd596865c7346ad738cfc8d407ee0 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
foo
(
hp
,
p
,
a
)
short
*
hp
;
int
*
p
;
int
a
;
{
hp
[
10
]
=
a
;
p
[
0
]
=
10
;
if
(
hp
[
10
]
>
0
)
return
1
;
return
0
;
}