summaryrefslogtreecommitdiff
path: root/techlibs
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/common/synth.cc2
-rw-r--r--techlibs/xilinx/synth_xilinx.cc2
2 files changed, 4 insertions, 0 deletions
diff --git a/techlibs/common/synth.cc b/techlibs/common/synth.cc
index 56ab6eaf..c3e7288d 100644
--- a/techlibs/common/synth.cc
+++ b/techlibs/common/synth.cc
@@ -96,6 +96,7 @@ struct SynthPass : public Pass {
log("\n");
log(" check:\n");
log(" hierarchy -check\n");
+ log(" stat\n");
log(" check\n");
log("\n");
}
@@ -186,6 +187,7 @@ struct SynthPass : public Pass {
if (check_label(active, run_from, run_to, "check"))
{
Pass::call(design, "hierarchy -check");
+ Pass::call(design, "stat");
Pass::call(design, "check");
}
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc
index 02207593..836ba9ad 100644
--- a/techlibs/xilinx/synth_xilinx.cc
+++ b/techlibs/xilinx/synth_xilinx.cc
@@ -100,6 +100,7 @@ struct SynthXilinxPass : public Pass {
log("\n");
log(" check:\n");
log(" hierarchy -check\n");
+ log(" stat\n");
log(" check -noinit\n");
log("\n");
log(" edif:\n");
@@ -202,6 +203,7 @@ struct SynthXilinxPass : public Pass {
if (check_label(active, run_from, run_to, "check"))
{
Pass::call(design, "hierarchy -check");
+ Pass::call(design, "stat");
Pass::call(design, "check -noinit");
}