reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
// 'z' is dynamically initialized global from different TU.
extern int z;
int __attribute__((noinline)) initY() {
  return z + 1;
}
int y = initY();