fix clang support for emulator-debug
This commit is contained in:
parent
565444c40e
commit
cd12fd1cbb
@ -98,14 +98,14 @@ int main(int argc, char** argv)
|
|||||||
#if VM_TRACE
|
#if VM_TRACE
|
||||||
bool dump = tfp && trace_count >= start;
|
bool dump = tfp && trace_count >= start;
|
||||||
if (dump)
|
if (dump)
|
||||||
tfp->dump(trace_count * 2);
|
tfp->dump(static_cast<vluint64_t>(trace_count * 2));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
tile->clk = 1;
|
tile->clk = 1;
|
||||||
tile->eval();
|
tile->eval();
|
||||||
#if VM_TRACE
|
#if VM_TRACE
|
||||||
if (dump)
|
if (dump)
|
||||||
tfp->dump(trace_count * 2 + 1);
|
tfp->dump(static_cast<vluint64_t>(trace_count * 2 + 1));
|
||||||
#endif
|
#endif
|
||||||
trace_count++;
|
trace_count++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user