OSDN Git Service

Add gcc.target/i386/pr47364-2.c and gcc.dg/torture/pr47364-1.c.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr34825.c
1 /* { dg-do compile } */
2 /* { dg-options "-O -funsafe-math-optimizations" } */
3
4 double foo(double x, double y)
5 {
6   return x == y ? x/y*x/y : 0;
7 }
8