Skip to content

Commit

Permalink
Merge pull request #504 from AteChroma0j/master
Browse files Browse the repository at this point in the history
Fix log message not updating total counters
  • Loading branch information
robertswiecki authored Nov 29, 2023
2 parents 07d6f8a + 5fbebc5 commit ed60362
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ static void fuzz_perfFeedback(run_t* run) {
run->dynfile->size, util_timeNowUSecs() - run->timeStartedUSecs,
run->hwCnts.cpuInstrCnt, run->hwCnts.cpuBranchCnt, run->hwCnts.newBBCnt, softNewEdge,
softNewPC, softNewCmp, run->hwCnts.cpuInstrCnt, run->hwCnts.cpuBranchCnt,
run->hwCnts.bbCnt, softCurEdge, softCurPC, softCurCmp);
run->global->feedback.hwCnts.bbCnt, run->global->feedback.hwCnts.softCntEdge,
run->global->feedback.hwCnts.softCntPc, run->global->feedback.hwCnts.softCntCmp);

if (run->global->io.statsFileName) {
const time_t curr_sec = time(NULL);
Expand Down

0 comments on commit ed60362

Please sign in to comment.