blob: 1439bc62e710e214e4eb4391913169883b445f8c (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-do compile { target i?86-*-* x86_64-*-* rs6000-*-* s390x-*-* } } */
/* { dg-options "-O2 -fstack-protector-all" } */
void
bar (void)
{
throw 1;
}
/* { dg-final { scan-assembler-times "stack_chk_fail" 1 } } */
|