aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/5-04.c
blob: c5135e88864974ce6e39dc4720c54801919e7979 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
#include <altivec.h>
vector unsigned int a;
vector unsigned int b;
void
f(void) 
{
  a = ((vector unsigned int){1,1,1,1});
  b = ((vector unsigned int){1,2,3,4});
}