view gcc/testsuite/gcc.dg/vect/pr93767.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

int
main ()
{
  int a[10], b;
  for (b = 6; b >= 3; b--)
    {
      a[b] = 1;
      a[b + 2] = a[3];
    }
  if (a[5] != 1)
    __builtin_abort ();
  return 0;
}