view gcc/testsuite/gcc.dg/torture/pr68963.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-do run } */

static const float a[3] = { 1, 2, 3 };
int b = 3;

__attribute__((noinline, noclone)) void
bar (int x)
{
  if (x != b++)
    __builtin_abort ();
}

void
foo (float *x, int y)
{
  int i;
  for (i = 0; i < 2 * y; ++i)
    {
      if (i < y)
	x[i] = a[i];
      else
	{
	  bar (i);
	  x[i] = a[i - y];
	}
    }
}

int
main ()
{
  float x[10];
  unsigned int i;
  for (i = 0; i < 10; ++i)
    x[i] = 1337;
  foo (x, 3);
  for (i = 0; i < 10; ++i)
    if (x[i] != (i < 6 ? (i % 3) + 1 : 1337))
      __builtin_abort ();
  return 0;
}