aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr108691.c
blob: e412df10f22c2c196aa65ed6d8ec199a18a9d645 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-options "-O2" } */

extern int __attribute__((returns_twice)) setjmp(void*);

void bbb(void) {
  int (*fnptr)(void*) = setjmp;
  fnptr(0);
}