repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
vmx
/
cw-bug-1.c
blob
0c3028b5122b159943b047bcc4c4d6eca8eb73c8
1
#include <altivec.h>
2
#include <stdlib.h>
3
4
#define ZERO (((vector unsigned char){0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}))
5
6
int
main
(
void
)
7
{
8
vector
unsigned char
a
=
ZERO
;
9
if
(
vec_any_ne
(
a
,
ZERO
))
10
abort
();
11
return
0
;
12
}