1 /* PR sanitizer/82545. */
2 /* { dg-do compile } */
3
4 extern void c(int);
5 extern void d(void);
6
7 void *buf[5];
8
9 void a(void) {
10 {
11 int b;
12 &b;
13 __builtin_setjmp(buf);
14 c(b);
15 }
16 d();
17 }