add call column in output

This commit is contained in:
Eyck-Alexander Jentzsch 2022-05-08 15:24:26 +02:00
parent 9d9008a3a2
commit 6579780dc9
1 changed files with 1 additions and 1 deletions

View File

@ -133,5 +133,5 @@ void iss::plugin::cov::callback(instr_info_t iinfo, const exec_info& einfo) {
delay = entry.taken;
else
delay = entry.not_taken;
output<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay << "\n";
output<<std::hex <<"0x" << instr_if->get_pc() <<"," << delay <<"," << call<< "\n";
}