comparison gcc/testsuite/gcc.dg/torture/pr83685.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */
2
3 int _setjmp (void *);
4 void foo (int);
5
6 void
7 bar (int e, int b, char c, void *d)
8 {
9 while (b)
10 {
11 if (_setjmp (d))
12 foo (e);
13 if (c)
14 {
15 e--;
16 foo (0);
17 }
18 e++;
19 }
20 }