> Is it possible to keep track of inlined functions or instructions that appear > because of the inlining? Can I get the function which was inlined ?In most
In most cases, inlining loses track of the identity of the function which has been inlined. However, the line number information for a given program counter value may still point to the correct location in the source file, depending on the compiler. Also, a correctly- written program still will work with 'inline' defeated, such as compiling with "-Dinline" or "#define inline /*empty*/", or perhaps with an explicit "turn off inlining" directive to the compiler. -- ------------------------------------------------------------------------------ AppSumo Presents a FREE Video for the SourceForge Community by Eric Ries, the creator of the Lean Startup Methodology on "Lean Startup Secrets Revealed." This video shows you how to validate your ideas, optimize your ideas and identify your business strategy. http://p.sf.net/sfu/appsumosfdev2dev _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
