PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / div-double-1.c
blobf290ab06782185cd2bdc103c404ae0d03fbff8cc
1 /* { dg-do run } */
2 /* { dg-options "-O2 -ffinite-math-only" } */
3 /* { dg-require-effective-target double64plus } */
5 extern void abort (void);
7 volatile double a = 2.002083e-146;
8 volatile double b;
10 int
11 main()
13 b = 1. / a;
15 if (b != (1. / 2.002083e-146))
16 abort ();
17 return 0;