mirror of https://github.com/YosysHQ/yosys.git
Revert "Add log_checkpoint function and use it in opt_muxtree"
This reverts commit 0e6c83027f
.
This commit is contained in:
parent
78560aac86
commit
06f94c92d4
|
@ -427,13 +427,6 @@ void log_pop()
|
|||
log_flush();
|
||||
}
|
||||
|
||||
void log_checkpoint()
|
||||
{
|
||||
log_id_cache_clear();
|
||||
IdString::checkpoint();
|
||||
log_flush();
|
||||
}
|
||||
|
||||
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(YOSYS_ENABLE_PLUGINS)
|
||||
void log_backtrace(const char *prefix, int levels)
|
||||
{
|
||||
|
|
|
@ -130,7 +130,6 @@ void log_spacer();
|
|||
void log_push();
|
||||
void log_pop();
|
||||
|
||||
void log_checkpoint();
|
||||
void log_backtrace(const char *prefix, int levels);
|
||||
void log_reset_stack();
|
||||
void log_flush();
|
||||
|
|
|
@ -204,7 +204,6 @@ struct OptMuxtreeWorker
|
|||
|
||||
log(" Analyzing evaluation results.\n");
|
||||
log_assert(glob_abort_cnt > 0);
|
||||
log_checkpoint();
|
||||
|
||||
for (auto &mi : mux2info)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue