Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr80583.c
blob6fe3212b65ce5971f5953d150351be8e0613a7d6
1 /* PR target/80583 */
2 /* { dg-do compile } */
3 /* { dg-options "-O0 -mno-avx" } */
5 typedef int V __attribute__((__vector_size__(32)));
6 struct S { V a; };
8 V __attribute__((target ("avx")))
9 foo (struct S *b)
11 V x = b->a;
12 return x;