]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/simd-3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / simd-3.c
1 /* { dg-do compile } */
2 /* { dg-options "-maltivec" { target { powerpc*-*-* && powerpc_altivec_ok } } } */
3
4 __attribute__ ((vector_size (2))) signed char v1, v2, v3;
5 void
6 one (void)
7 {
8 v1 = v2 + v3;
9 }
10
11 __attribute__ ((vector_size (8))) signed char v4, v5, v6;
12 void
13 two (void)
14 {
15 v4 = v5 + v6;
16 }