Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-40.c
blobd65bcc1b80b3c28bed38dd3d077c519e424b1c39
1 /* PR tree-optimization/67815 */
2 /* { dg-do compile } */
3 /* { dg-options "-Ofast -frounding-math -fdump-tree-reassoc1-details" } */
5 /* Test that the copysign reassoc optimization doesn't fire for
6 -frounding-math (i.e. HONOR_SIGN_DEPENDENT_ROUNDING) if the multiplication
7 is inexact. */
9 double
10 f1 (double y)
12 return (1.2 * __builtin_copysign (1.1, y));
15 double
16 f2 (double y)
18 return (-1.2 * __builtin_copysign (1.1, y));
21 /* { dg-final { scan-tree-dump-not "Optimizing copysign" "reassoc1" } } */