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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
array2.C
blob
5c1b6657786ef6f5c918a79261c09a6db0b88b91
1
// { dg-do run }
2
int i;
3
4
struct S {
5
S () {
6
++i;
7
}
8
9
S (int) {
10
}
11
};
12
13
int main()
14
{
15
S s[3][3] = { 2 };
16
17
if (i != 8)
18
return 1;
19
}