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
8extern void func(char *);
9
10void foo (void) {
11  char array[4096];
12  func(array);
13} /* { dg-warning "the frame size of .* bytes is larger than 2048 bytes" } */
14