Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20010118-1.c
blob: 6d1fc6431c6f200440f181e2c458322883ceb0f7 [
file
] [
log
] [
blame
]
static
unsigned
int
bar
(
void
*
h
,
unsigned
int
n
)
{
static
int
i
;
return
i
++;
}
static
void
baz
(
unsigned
int
*
x
)
{
(*
x
)++;
}
long
foo
(
void
*
h
,
unsigned
int
l
)
{
unsigned
int
n
;
long
m
;
n
=
bar
(
h
,
0
);
n
=
bar
(
h
,
n
);
m
=
({
baz
(&
n
);
21
;
});
return
m
;
}