Compare commits

...

2 Commits

View File

@ -165,10 +165,10 @@ void cov::callback(instr_info_t iinfo, const exec_info& einfo) {
else else
delay = entry.not_taken; delay = entry.not_taken;
#ifndef WITH_LZ4 #ifndef WITH_LZ4
output<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay << "\n"; output<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay <<"," << call<< "\n";
#else #else
auto rdbuf=ostr.rdbuf(); auto rdbuf=ostr.rdbuf();
ostr<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay << "\n"; ostr<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay <<"," << call<< "\n";
#endif #endif
} }
} }