Stack space and declarations

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
first some C code:

void foo (int x)
{
  int y = 0;
  if (x) {
    int z = 0;
    // some more code
  }
  else {
    int w = 0;
    // some more code
  }
}

Now, how much stack space is getting allocated in the function? Is it
(assuming 32bit architecture) 2*4=8 bytes (y + (z or w)) or is it 3*4=12
(each variable gets its own slot)?


Vaclav Haisman

Attachment: signature.asc
Description: OpenPGP digital signature


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux