aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vector-1.c
blob: a5eaa2a8c2dfd146644e4e5949e9b6d49f7de8f8 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-std=gnu90" } */

typedef int V __attribute__ ((vector_size(4)));
void fn1 ()
{
  (V){(1,0)}[0] = 0;
}