Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr51071.c
blob99af9587d055a7c6f04ea31c3ef4017284064852
1 /* { dg-do compile } */
3 void foo (void);
4 void bar (void *);
5 extern int t;
7 static void kmalloc_large (int size, int flags)
9 (void) size;
10 (void) flags;
11 foo ();
12 bar (({__here:&&__here;}));
15 static void kmalloc (int size, int flags)
17 if (size)
19 if ((unsigned long) size > 0x1000)
20 kmalloc_large (size, flags);
22 if (flags)
23 bar (({__here:&&__here;}));
27 void compress_file_range (int i, int j, int k)
29 int nr_pages = ({j < k;});
31 if (i || t)
32 kmalloc (0x1000UL * nr_pages, 0x40UL);