Does GCC inline C++ functions without the 'inline' keyword?

Viewed 14372

Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the inline keyword?

4 Answers
Related