https://bugs.kde.org/show_bug.cgi?id=357034
Bug ID: 357034 Summary: Inlined functions are not reported for intel-compiled applications. Product: valgrind Version: 3.10 SVN Platform: RedHat RPMs OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: memcheck Assignee: jsew...@acm.org Reporter: tatyana.a.mine...@intel.com If an application is built with Intel compiler, memcheck report does not contain inlined functions. A reproducer (inline_info.c) is attached. Steps to build and run the test: icc -O0 inline_info.c -g -o inline_info_icc valgrind -q --read-inline-info=yes ./inline_info_icc Expected result (reported for gcc-compiled application): ==xxxx== Conditional jump or move depends on uninitialised value(s) ==xxxx== at 0xxxxxxx: inlined (inline_info.c:5) ==xxxx== by 0xxxxxxx: main (inline_info.c:13) ==xxxx== Actual result: ==xxxx== Conditional jump or move depends on uninitialised value(s) ==xxxx== at 0xxxxxxx: main (inline_info.c:5) ==xxxx== -- You are receiving this mail because: You are watching all bug changes.