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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
vmx
/
zero-1.c
blob
637351cc5d4d6d5501aab1b3f25bb1f6a7f277c0
1
#include
"harness.h"
2
3
static
vector
unsigned int
funny
()
4
{
5
vector
unsigned int
a
;
6
return
vec_andc
(
vec_add
(
a
,
a
),
vec_add
(
a
,
a
));
7
}
8
9
static void
test
()
10
{
11
static
vector
unsigned int
zero
;
12
check
(
vec_all_eq
(
funny
(),
zero
),
"funny"
);
13
}