aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-04-21 23:28:37 +0200
committerClifford Wolf <clifford@clifford.at>2016-04-21 23:28:37 +0200
commit0bc95f1e049afc35bb5ea30663b0a5725dfbf584 (patch)
tree3a8641d3a9bb5794a24145ce368f3db7a3963709 /techlibs/common
parent1565d1af69f552b790aa43fd6be194ee59ab76f3 (diff)
downloadyosys-0bc95f1e049afc35bb5ea30663b0a5725dfbf584.tar.gz
yosys-0bc95f1e049afc35bb5ea30663b0a5725dfbf584.tar.bz2
yosys-0bc95f1e049afc35bb5ea30663b0a5725dfbf584.zip
Added "yosys -D" feature
Diffstat (limited to 'techlibs/common')
-rw-r--r--techlibs/common/prep.cc2
-rw-r--r--techlibs/common/synth.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/common/prep.cc b/techlibs/common/prep.cc
index 911737947..255306488 100644
--- a/techlibs/common/prep.cc
+++ b/techlibs/common/prep.cc
@@ -120,7 +120,7 @@ struct PrepPass : public Pass {
bool active = run_from.empty();
- log_header("Executing PREP pass.\n");
+ log_header(design, "Executing PREP pass.\n");
log_push();
if (check_label(active, run_from, run_to, "begin"))
diff --git a/techlibs/common/synth.cc b/techlibs/common/synth.cc
index 8eb1aeba4..acfe888d9 100644
--- a/techlibs/common/synth.cc
+++ b/techlibs/common/synth.cc
@@ -132,7 +132,7 @@ struct SynthPass : public ScriptPass
if (!design->full_selection())
log_cmd_error("This comannd only operates on fully selected designs!\n");
- log_header("Executing SYNTH pass.\n");
+ log_header(design, "Executing SYNTH pass.\n");
log_push();
run_script(design, run_from, run_to);