* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / vector-4.c
blob39c808543de28367114eb36fba8a379232e69e86
1 /* { dg-do compile } */
2 /* { dg-options "-mavx" { target { i?86-*-* x86_64-*-* } } } */
4 /* Make sure that vector of size 8 of signed char works. This used to crash with AVX on x86
5 as we would produce try to extract the chars inside the vector mode using the vector mode of V8SI
6 which was wrong. */
7 __attribute__ ((vector_size (8))) signed char v4, v5, v6;
8 void
9 two (void)
11 v4 = v5 + v6;