blob: 6fe3212b65ce5971f5953d150351be8e0613a7d6 [file] [log] [blame]
/* PR target/80583 */
/* { dg-do compile } */
/* { dg-options "-O0 -mno-avx" } */
typedef int V __attribute__((__vector_size__(32)));
struct S { V a; };
V __attribute__((target ("avx")))
foo (struct S *b)
{
V x = b->a;
return x;
}