1/* PR target/14343 */
2/* Origin: <Pawe Sikora <pluto@ds14.agh.edu.pl> */
3
4/* { dg-do compile } */
5/* { dg-require-effective-target ilp32 } */
6/* { dg-options "-march=pentium3" } */
7
8int main()
9{
10  typedef long long int v __attribute__ ((vector_size (16)));
11  v a, b;
12  a = b;
13  return 0;
14}
15