(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
asan/
pr82545.c
       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  }