PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / reassoc-41.c
blob8a18b8878439d99f96d6d1242820ff234fcc98dd
1 /* PR tree-optimization/67815 */
2 /* { dg-do compile } */
3 /* { dg-options "-Ofast -fno-rounding-math -fdump-tree-reassoc1-details" } */
5 /* Test that the copysign reassoc optimization does fire for
6 -fno-rounding-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-times "Optimizing copysign" 2 "reassoc1"} }*/