Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr48063.c
blobd861bf04c801e881a7bcc26bccfd65b90844447b
1 /* PR tree-optimization/48063 */
2 /* { dg-do compile } */
3 /* { dg-options "-fno-early-inlining" } */
5 extern void abort (void);
6 static void bar ();
8 void
9 foo ()
11 bar (1);
14 static void
15 bar (double i)
17 if (i)
18 abort ();