blob: 5432c81354ef73cd4dc6076663671ddc23069605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-do compile } */
/* { dg-options "-ffinite-math-only -fdump-tree-gimple" } */
double f(double x)
{
return x / x;
}
/* Division should be turned into 1.0. */
/* { dg-final { scan-tree-dump-not " / " "gimple" } } */
|