view gcc/testsuite/gcc.dg/vect/pr70138-1.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

#include "tree-vect.h"

double u[33 * 33];

__attribute__((noinline, noclone)) static void
foo (int *x)
{
  double c = 0.0;
  int a, b;
  for (a = 0; a < 33; a++)
    {
      for (b = 0; b < 33; b++)
	c = c + u[34 * a];
      u[34 * a] *= 2.0;
    }
  *x = c;
}

int
main ()
{
  int d, e;
  check_vect ();
  for (d = 0; d < 33 * 33; d++)
    {
      u[d] = 499.0;
      __asm__ volatile ("" : : : "memory");
    }
  for (d = 0; d < 33; d++)
    {
      u[d * 34] = (d + 2);
      __asm__ volatile ("" : : : "memory");
    }
  foo (&e);
  if (e != 33 * (2 + 34) / 2 * 33)
    __builtin_abort ();
  return 0;
}