summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/recip_sqrt_mult_4.c
blob: e192a3fb8578952bccab56d010cb22d523da3cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-Ofast -fdump-tree-recip" } */
/* { dg-additional-options "-fcompare-debug" { target { ! powerpc-ibm-aix* } } } */

/* The main path doesn't have any multiplications.
   Avoid introducing them in the recip pass.  */

double res, res2, tmp;
void
foo (double a, double b, int c, int d)
{
  tmp = 1.0 / __builtin_sqrt (a);
  if (c)
    res = tmp * tmp;

  if (d)
    res2 = a * tmp;
}

/* { dg-final { scan-tree-dump-not "Optimizing reciprocal sqrt multiplications" "recip" } } */
/* { dg-final { scan-tree-dump-not "Replacing squaring multiplication" "recip" } } */
/* { dg-final { scan-tree-dump-not "Replacing original division" "recip" } } */