Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
static15.C
blob: ecf477f68cb28ad18d0e40ec480279e91fbcffe2 [
file
] [
log
] [
blame
]
// { dg-do run }
// Origin: Mark Mitchell <mark@codesourcery.com>
// Special g++ Option: -fdata-sections
void
f
()
{
static
int
ctors
[
3
]
=
{
0
,
0
,
0
};
ctors
[
2
]
=
7
;
}
int
main
()
{
f
();
}