Skip to content

Commit 185c3cd

Browse files
EAlexJeyck
authored andcommitted
Update vm_base.h, corrects CLOG
1 parent 9f6ac7d commit 185c3cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iss/tcc/vm_base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ template <typename ARCH> class vm_base : public debugger_if, public vm_if {
208208
auto elapsed = end - start;
209209
auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(elapsed).count();
210210
auto cur_icount = get_reg<uint64_t>(arch::traits<ARCH>::reg_e::ICOUNT);
211-
CLOG(INFO) << "Executed " << cur_icount << " instructions in " << func_map.size(, dbt_rise_iss) << " code blocks during " << millis
211+
CLOG(INFO, dbt_rise_iss) << "Executed " << cur_icount << " instructions in " << func_map.size(, dbt_rise_iss) << " code blocks during " << millis
212212
<< "ms resulting in " << (cur_icount * 0.001 / millis) << "MIPS";
213213
return error;
214214
}

0 commit comments

Comments
 (0)