2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / div_neg.c
blobda499cda2fba6c943ec99c55cae2ea389f9e1cca
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 float
5 div_neg (float x, float y)
7 return (-x / y) * (x / -y);
10 /* { dg-final { scan-tree-dump-times " / " 1 "optimized" } } */