OSDN Git Service

libcpp/:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20020319-1.c
1 /* PR optimization/5999
2    This testcase ICEd because one a/b -> a * (1/b) optimization
3    did not handle complex divides.  */
4 /* { dg-do compile } */
5 /* { dg-options "-O2 -ffast-math" } */
6
7 __complex__ double foo (__complex__ double x, __complex__ double y)
8 {
9   return x / y;
10 }