view gcc/testsuite/g++.target/i386/pr90187.C @ 145:1830386684a0

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

// PR target/90187
// { dg-do compile }
// { dg-options "-Ofast -ffloat-store" }

double a[64];
double *foo (void);

void
bar (int x, const double *y)
{
  int i;
  for (i = 0; i < x; i++)
    if (y[i] < a[i])
      a[i] = y[i];
}