1 /* PR target/84146 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -g -fcf-protection=full -fcompare-debug" } */
4 
5 int __setjmp (void **);
6 void *buf[64];
7 
8 void
foo(void)9 foo (void)
10 {
11   __setjmp (buf);
12   for (;;)
13     ;
14 }
15