view gcc/testsuite/gcc.c-torture/compile/pr90139.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +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);
      }
}