1inline int inlined_h() {2 volatile int z = 0;3 return z;4}5 6inline int inlined_g() {7 volatile int y = inlined_h();8 return y;9}10