covoar: Add information to improve diagnostics.

This commit is contained in:
Hermann Felbinger
2017-08-26 09:15:53 +01:00
committed by Chris Johns
parent b857151112
commit cb018bcdff
9 changed files with 67 additions and 38 deletions

View File

@@ -16,13 +16,15 @@
namespace Coverage {
CoverageMapBase::CoverageMapBase(
uint32_t low,
uint32_t high
const std::string& exefileName,
uint32_t low,
uint32_t high
)
{
uint32_t a;
AddressRange_t range;
range.fileName = exefileName;
range.lowAddress = low;
range.highAddress = high;
RangeList.push_back( range );