Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7956 Discussions

match asm/source code listing with the inline function

vtuneuser
Beginner
370 Views

How do I match the asm code listing with the souce code of the inline function? I can get the asm/source code listing for the normal functionby using the compiler switch but not the inline function.

0 Kudos
1 Reply
Dale_S_Intel
Employee
370 Views

Unfortunately I don't think there's a good way to do that currently. I believe we may have better facilities for this in future versions, but for now it will take some detective work. You might compare against a version with inlining disabled (-Ob0 on Linux) and see if you kind find the info you're looking for. It kinda depends on exactly what you're trying to accomplish.

Hope that helps. If you can give me more details we can brainstorm a bit.

Dale

0 Kudos
Reply