mirror of https://github.com/YosysHQ/abc.git
Merge pull request #463 from dinoruic/patch-2
Fix destructor rewireMiaig.h
This commit is contained in:
commit
c8d4592453
|
|
@ -441,7 +441,7 @@ inline void Miaig::release(void) {
|
|||
if (_data->pRequire) free(_data->pRequire);
|
||||
if (_data->pTable) free(_data->pTable);
|
||||
if (_data->pNtkMapped) Vi_Free(_data->pNtkMapped);
|
||||
delete _data;
|
||||
free(_data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -612,4 +612,4 @@ inline void Miaig::attachTiming(vi *vCiArrs, vi *vCoReqs) {
|
|||
ABC_NAMESPACE_CXX_HEADER_END
|
||||
#endif // RW_ABC
|
||||
|
||||
#endif // REWIRE_MIAIG_H
|
||||
#endif // REWIRE_MIAIG_H
|
||||
|
|
|
|||
Loading…
Reference in New Issue