view gcc/testsuite/gcc.dg/recip_sqrt_mult_4.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* { 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" } } */