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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.dg
/
init
/
array7.C
blob
23c6a7098efd551016c97cb41b05cabb08f3d600
1
struct S {
2
virtual void v () {}
3
void f (const float g[3]);
4
float h[3];
5
};
6
7
void g () {
8
S s1, s2;
9
s1 = s2;
10
}
11
12
void S::f (const float g[3]) {}
13
14
15