]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/Wframe-larger-than.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / Wframe-larger-than.c
1 /* Test -Wframe-larger-than for warning
2 when the frame size is bigger than specified.
3 Origin: Seongbae Park <seongbae.park@gmail.com> */
4
5 /* { dg-do compile } */
6 /* { dg-options "-Wframe-larger-than=2048" } */
7
8 extern void func(char *);
9
10 void foo (void) {
11 char array[4096];
12 func(array);
13 } /* { dg-warning "the frame size of .* bytes is larger than 2048 bytes" } */