view gcc/testsuite/gcc.dg/Wframe-larger-than-3.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 2b5abeee2509
children
line wrap: on
line source

/* PR 90983/manual documents `-Wno-stack-usage` flag, but it is unrecognized
   { dg-do compile }
   { dg-options "-Wall -Wframe-larger-than=123 -Wno-frame-larger-than" } */

void f (void*);

void g (void)
{
  char a [1234];
  f (a);
}