libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp-float-4.c
blob86436742e0a0d52c53246843929da0d316dd2e07
1 // { dg-do compile }
2 // { dg-options "-O2 -fdisable-tree-ethread -fdump-tree-evrp" }
4 void link_error ();
6 void
7 foo (double x, double y)
9 if (x > y)
11 if (__builtin_isnan (x) || __builtin_isnan (y))
12 link_error ();
16 // { dg-final { scan-tree-dump-not "link_error" "evrp" } }