/* * gcc -Os -c ctorA.cxx * readelf -S ctorA.o | grep ctor * * [ 5] .ctors PROGBITS 0000000000000000 00000068 * [ 6] .rela.ctors RELA 0000000000000000 000006c8 * */ struct MyOtherStruct { void * pointer; MyOtherStruct(): pointer(0) {} }; static MyOtherStruct myPointer3;