Does linux binary contain information that function was inlined ?

209 viewsOtherTechnology

in C++, If a inline function is successfully inlined by compiler, does the generated binary conatins information that so and so functions were inlined ?

In: Technology

Anonymous 0 Comments

no. for an inline function, the compiler takes the body of the function and pastes where the function call was.

You are viewing 1 out of 1 answers, click here to view all answers.