I have a problem with valgrind; I don’t know why, when I test my program developed in C with valgrind, it cannot display function names (it displays “???”), where it detects problems, but these problems are not for all errors that it detects
==9803== ERROR SUMMARY: 24 errors from 6 contexts (suppressed: 0 from 0)
==9803==
==9803== 1 errors in context 1 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F7EC6: ???
==9803==
==9803== 1 errors in context 2 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F86F8: ???
==9803==
==9803== 1 errors in context 3 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F8166: ???
==9803==
==9803== 1 errors in context 4 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F805E: ???
==9803==
Do you have a solution for displaying function names using valgrind?
Thanks in advance
source
share