repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
gcc.dg
/
vmx
/
1b-01.c
blob
8cdacb640f1acc9883a8fc39f86a33825d127992
1
#include
"harness.h"
2
3
vector
unsigned char
a
;
4
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)"
);
11
}