|
From: Nicholas N. <nj...@cs...> - 2005-03-15 14:22:42
|
On Tue, 15 Mar 2005, Jeremy Fitzhardinge wrote: > Does it leave any trace of the inlining in the debug info? Not AFAICT. I compiled with -g and inspected the debug info with 'readelf -w', and saw no sign of memcpy... it seems dwarf doesn't represent calls to functions. I also compiled with -gstabs and inspected the debug info with 'objdump -g' and 'objdump -G', and again saw no signs of memcpy. Could I be overlooking something? On Tue, 15 Mar 2005, Dirk Mueller wrote: > even with -fno-builtins ? Ah, that works -- memcpy() isn't inlined and so the overlap detection works again. N |