diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 16:51:37 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 16:51:37 -0700 |
commit | 90dc4d82de2eb7193caef797203d0e4cc8d32d3e (patch) | |
tree | 6aa315b007cc1dd02eec2cfb1bd842a37bfa6579 | |
parent | 9f275c1437cb48c28b717f0996edab9da9e73aa0 (diff) | |
download | yosys-90dc4d82de2eb7193caef797203d0e4cc8d32d3e.tar.gz yosys-90dc4d82de2eb7193caef797203d0e4cc8d32d3e.tar.bz2 yosys-90dc4d82de2eb7193caef797203d0e4cc8d32d3e.zip |
Revert "For 'stat' do not count modules with abc_box_id"
This reverts commit b89bb744529fc8a5e4cd38522f86a797117f2abc.
-rw-r--r-- | passes/cmds/stat.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/passes/cmds/stat.cc b/passes/cmds/stat.cc index c42f7fcdd..d22685b62 100644 --- a/passes/cmds/stat.cc +++ b/passes/cmds/stat.cc @@ -339,9 +339,6 @@ struct StatPass : public Pass { if (mod->get_bool_attribute("\\top")) top_mod = mod; - if (mod->attributes.count("\\abc_box_id")) - continue; - statdata_t data(design, mod, width_mode, cell_area, techname); mod_stat[mod->name] = data; |