aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstack-usage.c
blob: 11e3a27b66b130694439f3e4da438103bbe1a697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR 90983/manual documents `-Wno-stack-usage` flag, but it is unrecognized
   { dg-do compile }
   { dg-options "-Wall -Wstack-usage=123 -Wno-stack-usage" }
   { dg-require-effective-target alloca } */

void f (void*);

void g (int n)
{
  if (n < 1234)
    n = 1234;

  char a [n];
  f (a);
}