Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20050801-2.c
blob: ba8dabaa3710f5b60edaf58ec001b2d7fde82e5d [
file
] [
log
] [
blame
]
/* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
__inline
int
f
(
int
i
)
{
struct
{
int
t
[
i
];
}
t
;
return
sizeof
(
t
.
t
[
i
--]);
}
int
g
(
int
i
)
{
return
f
(
i
);
}