diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-17 12:58:41 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-17 12:58:41 -0700 |
commit | 7dd3a7f161d57f8c1f4a26cc5645bbec1c9e687a (patch) | |
tree | 82324b5e68d132dd9c16e7b9ccde4211f1e1fa4f /kernel/rtlil.h | |
parent | 5ce672d1c502d24551e71a8296a672ff16411870 (diff) | |
parent | b45d06d7a334c4b18e44793b33aaffcaf1f04b21 (diff) | |
download | yosys-7dd3a7f161d57f8c1f4a26cc5645bbec1c9e687a.tar.gz yosys-7dd3a7f161d57f8c1f4a26cc5645bbec1c9e687a.tar.bz2 yosys-7dd3a7f161d57f8c1f4a26cc5645bbec1c9e687a.zip |
Merge branch 'xaig' into xaig_dff
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index f4fcf5dcf..4a0f8b4f8 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1040,6 +1040,7 @@ public: // Removing wires is expensive. If you have to remove wires, remove them all at once. void remove(const pool<RTLIL::Wire*> &wires); void remove(RTLIL::Cell *cell); + dict<RTLIL::IdString, RTLIL::Cell*>::iterator remove(dict<RTLIL::IdString, RTLIL::Cell*>::iterator it); void rename(RTLIL::Wire *wire, RTLIL::IdString new_name); void rename(RTLIL::Cell *cell, RTLIL::IdString new_name); |