view gcc/testsuite/gcc.dg/torture/pr81245.c @ 131:84e7813d76e9

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

/* { dg-options "-ffast-math" } */
/* { dg-do compile } */
/* This test used to crash the vectorizer as the ifconvert pass
   used to convert the if to copysign but called update_stmt on
   the old statement after calling fold_stmt. */
double sg[18];
void f(void)
{
  for (int i = 0 ;i < 18;i++)
  {
    if (sg[i] < 0.0)
      sg[i] = -1.0;
    else
      sg[i] = 1.0;
  }
}