Search Results

1
vote

Why does a C/C++ program often have optimization turned off in debug mode?

Another of the issues with optimizations are inline functions, also in the sense that you will always single-step through them. With GCC, with debugging and optimizations enabled together, …
0
votes

What compilers besides gcc can vectorize code?

Actually, in many cases GCC used to be quite worse than ICC for automatic code vectorization, I don't know if it recently improved enough, but I doubt it. …
2
votes

Checking stack usage at compile time

Linux kernel code runs on a 4K stack on x86. Hence they care. What they use to check that, is a perl script they wrote, which you may find as scripts/checkstack.pl in a recent kernel tarball (2.6.2 …