diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-02-28 22:17:00 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-02-28 22:17:00 +0100 |
commit | 180d70456859305357f07803d14399e986840109 (patch) | |
tree | dda26af2e40b999aaa5a27399a5771a4f6c9629e /passes | |
parent | fbd52ec6dd610966111ebf2ed0e31548aead3dc6 (diff) | |
download | yosys-180d70456859305357f07803d14399e986840109.tar.gz yosys-180d70456859305357f07803d14399e986840109.tar.bz2 yosys-180d70456859305357f07803d14399e986840109.zip |
Disable opt_merge for $anyseq and $anyconst
Diffstat (limited to 'passes')
-rw-r--r-- | passes/opt/opt_merge.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/opt/opt_merge.cc b/passes/opt/opt_merge.cc index 07e4dd39f..b63fd3c8d 100644 --- a/passes/opt/opt_merge.cc +++ b/passes/opt/opt_merge.cc @@ -275,6 +275,9 @@ struct OptMergeWorker ct.cell_types.erase("$pmux"); } + ct.cell_types.erase("$anyseq"); + ct.cell_types.erase("$anyconst"); + log("Finding identical cells in module `%s'.\n", module->name.c_str()); assign_map.set(module); |