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