Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr64728.c
blob7384d85a9289d8ae1c22929838954777ea4831bf
1 /* { dg-do compile } */
2 /* { dg-require-effective-target nonlocal_goto } */
4 #include <setjmp.h>
6 jmp_buf a;
7 int b, d;
8 void baz (long);
10 static void
11 bar (long *x)
13 if (d)
14 *x = b;
17 void
18 foo ()
20 baz (0);
21 if (setjmp (a))
23 long c;
24 bar (&c);
25 baz (c);
27 baz (0);