]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr69167.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr69167.c
CommitLineData
e0237993
JJ
1/* PR tree-optimization/69167 */
2/* { dg-do compile } */
3/* { dg-options "-O2" } */
4
5int sigsetjmp (char *);
6void foo ();
7void bar (void (*) (int *));
8extern char t[];
9
10void
11baz (int *x)
12{
13 int *a = x;
14 foo ();
15 x = 0;
16 if (sigsetjmp (t))
17 while (1)
18 bar (a ? baz : 0);
19 if (x)
20 foo ();
21}