aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/recip-1.c
blob: 36f2c23ded76f3636cffbb67cfb85be64137412e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O1 -funsafe-math-optimizations -fdump-tree-recip" } */

float e(float *x, float *y, float *z)
{
  float m = __builtin_sqrt (*x * *x + *y * *y + *z * *z);
  *x /= m;
  *y /= m;
  *z /= m;
}

/* Look for only one division.  */
/* { dg-final { scan-tree-dump-times "= .* /" 1 "recip" } } */
/* { dg-final { cleanup-tree-dump "recip" } } */