libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / dfp / pr108068.c
bloba8798e9002022f4efc41ab226dcca6d061df8523
1 /* PR tree-optimization/108068 */
2 /* { dg-options "-O2" } */
4 int
5 main ()
7 _Decimal64 x = -1;
8 while (x != 0)
9 x /= 10;
10 double d = x;
11 if (!__builtin_signbit (d))
12 __builtin_abort ();