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
/
g++.dg
/
parse
/
attr2.C
blob
ce770029cbb5e3d81a6f4f64c32dfe64be2e94e7
1
// PR c++/16337
2
3
#define vector __attribute__((vector_size(16)))
4
void foo (void)
5
{
6
vector signed int v1 = { 1, 2, 3, 4 };
7
vector signed int v2, v3;
8
vector signed int v4;
9
v2 = v1;
10
v3 = v1;
11
v4 = v1;
12
}