Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / vmx / 1b-01.c
blob8cdacb640f1acc9883a8fc39f86a33825d127992
1 #include "harness.h"
3 vector unsigned char a;
5 static void test()
6 {
7 check(sizeof(a) == 16, "sizeof(a)");
8 check(((long)&a & 15) == 0, "alignof(a)");
9 check((long)&a != 0, "&a");
10 check(vec_all_eq(a,((vector unsigned char){0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0})), "value(a)");