aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-02 16:14:04 -0800
committerEddie Hung <eddie@fpgeh.com>2020-01-02 16:14:04 -0800
commita050f9c80887f9962c326566c1f351c991e0c8b0 (patch)
tree77c252391fabde31d9d323a80988d2bd761562b6
parent4eaf41505256fc6f20065b3e5a64d74e607b15e7 (diff)
downloadyosys-a050f9c80887f9962c326566c1f351c991e0c8b0.tar.gz
yosys-a050f9c80887f9962c326566c1f351c991e0c8b0.tar.bz2
yosys-a050f9c80887f9962c326566c1f351c991e0c8b0.zip
Remove a few log_{push,pop}()
-rw-r--r--passes/techmap/abc9_map.cc7
-rw-r--r--passes/techmap/abc9_ops.cc1
2 files changed, 0 insertions, 8 deletions
diff --git a/passes/techmap/abc9_map.cc b/passes/techmap/abc9_map.cc
index 9b56f04a8..171289c6d 100644
--- a/passes/techmap/abc9_map.cc
+++ b/passes/techmap/abc9_map.cc
@@ -266,8 +266,6 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *module, std::string scrip
fprintf(f, "%s\n", abc9_script.c_str());
fclose(f);
- log_push();
-
int count_outputs = design->scratchpad_get_int("write_xaiger.num_outputs");
log("Extracted %d AND gates and %d wires to a netlist network with %d inputs and %d outputs.\n",
design->scratchpad_get_int("write_xaiger.num_ands"),
@@ -645,8 +643,6 @@ clone_lut:
//{
// log("Don't call ABC as there is nothing to map.\n");
//}
-
- log_pop();
}
struct Abc9MapPass : public Pass {
@@ -759,7 +755,6 @@ struct Abc9MapPass : public Pass {
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
{
log_header(design, "Executing ABC9_MAP pass (technology mapping using ABC9).\n");
- log_push();
#ifdef ABCEXTERNAL
std::string exe_file = ABCEXTERNAL;
@@ -913,8 +908,6 @@ struct Abc9MapPass : public Pass {
delay_target, lutin_shared, fast_mode, all_cells, show_tempdir,
box_file, lut_file, wire_delay, nomfs, tempdir_name);
}
-
- log_pop();
}
} Abc9MapPass;
diff --git a/passes/techmap/abc9_ops.cc b/passes/techmap/abc9_ops.cc
index dcb8a8a78..a4059bd4d 100644
--- a/passes/techmap/abc9_ops.cc
+++ b/passes/techmap/abc9_ops.cc
@@ -436,7 +436,6 @@ struct Abc9OpsPass : public Pass {
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
{
log_header(design, "Executing ABC9_OPS pass (helper functions for ABC9).\n");
- log_push();
bool break_scc_mode = false;
bool unbreak_scc_mode = false;