Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / ssp-1.c
blob5467f4dc36cd7af0d46837344d2e9911f29b4f80
1 /* { dg-do run { target native } } */
2 /* { dg-options "-fstack-protector" } */
3 /* { dg-require-effective-target fstack_protector } */
5 #include <stdlib.h>
7 void
8 __stack_chk_fail (void)
10 exit (0); /* pass */
13 int main ()
15 int i;
16 char foo[255];
18 // smash stack
19 for (i = 0; i <= 400; i++)
20 foo[i] = 42;
22 return 1; /* fail */