Skip to content

Commit 23bbd42

Browse files
committed
fix(Difftest): fix some syntax errors
1 parent 16a948f commit 23bbd42

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/csrc/difftest/difftest.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,9 +1710,11 @@ void DiffState::display(int coreid) {
17101710
Info("\n============== Commit Group Trace (Core %d) ==============\n", coreid);
17111711
int group_index = 0;
17121712
while (!retire_group_queue.empty()) {
1713-
auto retire_group = retire_group_queue.front()
1713+
auto retire_group = retire_group_queue.front();
1714+
auto pc = retire_group.first;
1715+
auto cnt = retire_group.second;
17141716
retire_group_queue.pop();
1715-
Info("commit group [%02d]: pc %010lx cmtcnt %d%s\n", group_index, retire_group.pc, retire_group.cnt,
1717+
Info("commit group [%02d]: pc %010lx cmtcnt %d%s\n", group_index, pc, cnt,
17161718
retire_group_queue.empty() ? " <--" : "");
17171719
group_index++;
17181720
}

0 commit comments

Comments
 (0)