OMG OPTIMIZATIONS sometimes make crash dumps fucking unreadable. They even fucking obliterate complete function calls and write the nested function call to the body of the calling function. This is huh... wow!
They even fucking obliterate complete function calls and write the nested function call to the body of the calling function.
that is what inline is supposed to do, especially at O2 and higher
Name:
Anonymous2010-03-17 12:39
>>3
It's even funnier when the compiler in question (hint: not an x86 compiler) inlines functions that aren't inline'd at all. Basically the functions that get implicitly inlined are those that are called exactly once from a function or two.