/* * gcc -Os -c ctorB.cxx * readelf -S ctorB.o | grep ctor * * no output */ static void * myPointer1(0); void * myFunction1() { return myPointer1; } struct MyStruct { void * pointer; }; static MyStruct myPointer2;