Hello,
I am on Windows platform working with Win32/PE executables. Eclipse's built in x86/le parser can demangle the C++ function names. But I noticed that the GCov Integration plug-in produces mangled names in it's summary report view.
Take the following example:
/* function prototype */
void VER_updateVersionInfoField(VER_infoFieldTypes_t field, uint8_t srcAddress[]);
/* demangled name by eclipse's x86/le binary parser */
VER_updateVersionInfoField(VER_infoFieldTypes_t, uint8_t[]) : void
/* mangled name visible in GCov Integration plug-in's summary report */
_ZN12_GLOBAL__N_126VER_updateVersionInfoFieldENS_16VER_infoFields_eEPh
Would it be possible to get demangled names in the summary report?