Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / stack-check-18.c
blob1cf4bbcfafb54f4a9a5b75462896c3a9763c384c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fstack-clash-protection -mtune=generic -fdump-rtl-expand" } */
3 /* { dg-require-effective-target supports_stack_clash_protection } */
4 /* { dg-skip-if "" { *-*-* } { "-fstack-protector*" } { "" } } */
6 int f1 (char *);
8 int
9 f2 (void)
11 const int size = 4096;
12 char buffer[size];
13 return f1 (buffer);
16 /* So we want to verify that at expand time that we probed the main
17 VLA allocation as well as the residuals. Then we want to verify
18 there was only one probe in the final assembly (implying the
19 residual probe was optimized away). */
20 /* { dg-final { scan-rtl-dump-times "allocation and probing in loop" 1 "expand" } } */
21 /* { dg-final { scan-rtl-dump-times "allocation and probing residuals" 1 "expand" } } */
23 /* { dg-final { scan-assembler-times "or\[ql\]" 1 } } */