brintos

brintos / llvm-project-archived public Read only

0
0
Text · 149 B · a3d8f19 Raw
7 lines · cpp
1// 'z' is dynamically initialized global from different TU.2extern int z;3int __attribute__((noinline)) initY() {4  return z + 1;5}6int y = initY();7