1 /* { dg-do compile } */
2 /* { dg-options "-O1 -funsafe-math-optimizations -fdump-tree-recip" } */
4 float e(float a
, float b
, float c
, float d
, float e
, float f
)
12 /* The PHI nodes for these divisions should be combined. */
20 /* This should not be left as a multiplication. */
23 return a
+ b
+ c
+ d
+ e
+ f
;
26 /* { dg-final { scan-tree-dump-times " / " 2 "recip" } } */
27 /* { dg-final { scan-tree-dump-times " \\* " 5 "recip" } } */
28 /* { dg-final { cleanup-tree-dump "recip" } } */