2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020319-1.c
blob46a756d775ab9362bf4bac24c94a50a3fda103d7
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" } */
7 __complex__ double foo (__complex__ double x, __complex__ double y)
9 return x / y;