From-SVN: r37113
This commit is contained in:
Mark Mitchell 2000-10-29 02:30:21 +00:00
parent 2c21b2473c
commit 7d3af72b0a

View file

@ -0,0 +1,14 @@
// 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 ();
}