PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / stack-layout-2.c
blob5d5b385f675c17b4a7a41a3d0a314e007d77aec9
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-rtl-expand" } */
3 void bar( char *);
4 int foo()
6 int i=0;
8 char a[8000];
9 bar(a);
10 i += a[0];
13 char a[8192];
14 char b[32];
15 bar(a);
16 i += a[0];
17 bar(b);
18 i += a[0];
20 return i;
22 /* { dg-final { scan-rtl-dump "size 8192" "expand" } } */
23 /* { dg-final { scan-rtl-dump "size 32" "expand" } } */