view gcc/testsuite/gcc.c-torture/compile/pr90139.c @ 152:2b5abeee2509

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

/* PR middle-end/90139 */

typedef float __attribute__((vector_size (sizeof (float)))) V;
void bar (int, V *);
int l;

void
foo (void)
{
  V n, b, o;
  while (1)
    switch (l)
      {
      case 0:
	o = n;
	n = b;
	b = o;
	bar (1, &o);
      }
}