Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.dg
/
Wstack-usage.c
blob: 4738b69478b8a43ce679559f834d48cab0243913 [
file
] [
log
] [
blame
]
/* PR 90983/manual documents `-Wno-stack-usage` flag, but it is unrecognized
{ dg-do compile }
{ dg-options "-Wall -Wstack-usage=123 -Wno-stack-usage" } */
void
f
(
void
*);
void
g
(
int
n
)
{
if
(
n
<
1234
)
n
=
1234
;
char
a
[
n
];
f
(
a
);
}