view gcc/testsuite/gcc.target/aarch64/sve/pr94605.c @ 152:2b5abeee2509

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

/* { dg-options "-O2 -msve-vector-bits=256" } */

typedef int v8si __attribute__((vector_size(32)));
int g (v8si, v8si);

void
f (void)
{
  v8si x = {}, y = {};
  while (g (x, y))
    asm ("" : "+w" (x), "+w" (y));
}