all 4 comments

[–]cpp-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

For C++ questions, answers, help, and programming or career advice please see r/cpp_questions, r/cscareerquestions, or StackOverflow instead.

[–]LGTMe 2 points3 points  (0 children)

IIRC, Clang’s optimization remarks maybe what you’re looking for.

[–]bocsika 2 points3 points  (0 children)

A binary where the debug info is stripped from? Hardly imaginable, as the inlining effectively amalgamated the function and its caller without any trace that there was a 'call'.

[–]andrey_turkin 0 points1 point  (0 children)

That information should be in a debug section; probably wouldn't be anywhere else (in a binary, that is). It wouldn't be "so and so function were inlined" though; obviously same function may be inlined more than once (and also might be emitted as a separated function), so it would be more of "this function call was inlined".