Compare commits

..

No commits in common. "bb658be3b49ed35c4d4dd5567b2c9d9d5d4f4084" and "e56bc1278824b44db92d79b0fe09b7b3377d79af" have entirely different histories.

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 <<"," << call<< "\n"; output<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay << "\n";
#else #else
auto rdbuf=ostr.rdbuf(); auto rdbuf=ostr.rdbuf();
ostr<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay <<"," << call<< "\n"; ostr<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay << "\n";
#endif #endif
} }
} }