comparison gcc/testsuite/gcc.dg/Wframe-larger-than-3.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* PR 90983/manual documents `-Wno-stack-usage` flag, but it is unrecognized
2 { dg-do compile }
3 { dg-options "-Wall -Wframe-larger-than=123 -Wno-frame-larger-than" } */
4
5 void f (void*);
6
7 void g (void)
8 {
9 char a [1234];
10 f (a);
11 }