view gcc/testsuite/g++.dg/recip_sqrt_mult_1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-Ofast -fnon-call-exceptions -fdump-tree-recip" } */

double res, res2, tmp;
void
foo1 (double a, double b)
{
  try {
    tmp = 1.0 / __builtin_sqrt (a);
    res = tmp * tmp;
    res2 = a * tmp;
  }
  catch (...)
    { ; }
}

void
foo4 (double a, double b, int c, int d)
{
  try {
    tmp = 1.0 / __builtin_sqrt (a);
  }
  catch (...)
    {
      if (c)
	res = tmp * tmp;

      if (d)
	res2 = a * tmp;
    }
}

void
foo5 (double a, double b, int c, int d)
{
  try {
    tmp = 1.0 / __builtin_sqrt (a);
    res = tmp * tmp;

    if (d)
      res2 = a * tmp;
  }
  catch (...)
    { ; }
}

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