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
pretty-print.h (pp_base): Remove.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ctor1.c
blob
6c1cd72cc77ab2f27c4a6fda42008d7a622ac12a
1
/* Related to PR c++/38410.
2
We shouldn't write out a static variable for an all-zero aggregate
3
initializer. The variable named C.0 was created by
4
gimplify_init_constructor. */
5
/* { dg-final { scan-assembler-not "C\\.0" } } */
6
7
int
main
()
8
{
9
int
a
[] = {
0
,
0
};
10
}