1extern "C" int x;
2
3namespace {
4
5struct Init {
6public:
7 Init() { x = 1; }
8};
9
10Init SetX;
11
12} // namespace
13

source code of compiler-rt/test/orc/TestCases/Linux/Generic/Inputs/SetGlobalIntXInConstructor.cpp