This is gcc 4.4.6 on Linux.
Here's the behavior
bizarre.c
double a[500000000];
main() {
}
If I compile this using:
gcc bizarre.c
Then the compiler uses 4G of memory, and takes a long time.
If I make the array size 50000000, the the compilation takes considerably less memory and time.
It's like the compiler is executing the code that it's compiling.
I realize that creating a humongous array this way might not be best practice, but any explanations?
.bsssection anyway, no stack involved... – sarnold Jun 15 '12 at 1:17BSSsection simply stores the sizes of the data objects to be instantiated with zero bytes. The version with one0removed compiles to8355bytes on my system, and I'd expect the version with the0put back to compile to within 32 bytes of this size -- probably identical size. – sarnold Jun 18 '12 at 23:10