summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr66101.c
blob: 39d380722b463af65e264251d6067e65eb0d77f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* { dg-do compile } */
/* { dg-require-effective-target nonlocal_goto } */

#include <setjmp.h>

jmp_buf env;

int a, c, d, e;

int
bar ()
{
  int b = *(long *) 7 == 5 ? : 0;
  if (a || a > b)
    longjmp (env, 0);
  return 1;
}

void
foo ()
{
  long f;
  setjmp (env);
  for (; d; c++)
    switch (c)
case 0:
      {
	f = bar () >> 1;
	if (e)
	  goto L;
	if (bar () >> 1)
	  goto L;
      }
L:
    ;
}