Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr57036-2.c
blob6e70d3bf79a77806bc0a4571e4fbbcc29bdfa835
1 /* { dg-do compile } */
2 /* { dg-require-effective-target nonlocal_goto } */
4 int j_;
5 void g (void);
6 int jpgDecode_convert (unsigned i)
8 __label__ label;
9 int j;
11 inline void __attribute__((always_inline,leaf)) f(void)
13 g();
16 void __attribute__((noinline)) read_buf_open (void)
18 goto label;
21 if (i != 0)
22 f ();
23 j = j_;
24 read_buf_open ();
25 label:
26 return j;