]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/vector-1.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / vector-1.c
CommitLineData
eb0e7c34
RB
1/* { dg-do compile } */
2/* { dg-options "-std=gnu90" } */
3
4typedef int V __attribute__ ((vector_size(4)));
5void fn1 ()
6{
7 (V){(1,0)}[0] = 0;
8}