mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-10 01:05:49 +00:00
Merge d7c6688905
into a0e94e506d
This commit is contained in:
commit
ce08b79ffd
1 changed files with 3 additions and 3 deletions
|
@ -509,7 +509,7 @@ struct BtorWorker
|
||||||
goto okay;
|
goto okay;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cell->type.in(ID($not), ID($neg), ID($_NOT_), ID($pos)))
|
if (cell->type.in(ID($not), ID($neg), ID($_NOT_), ID($pos), ID($buf), ID($_BUF_)))
|
||||||
{
|
{
|
||||||
string btor_op;
|
string btor_op;
|
||||||
if (cell->type.in(ID($not), ID($_NOT_))) btor_op = "not";
|
if (cell->type.in(ID($not), ID($_NOT_))) btor_op = "not";
|
||||||
|
@ -521,9 +521,9 @@ struct BtorWorker
|
||||||
int nid_a = get_sig_nid(cell->getPort(ID::A), width, a_signed);
|
int nid_a = get_sig_nid(cell->getPort(ID::A), width, a_signed);
|
||||||
SigSpec sig = sigmap(cell->getPort(ID::Y));
|
SigSpec sig = sigmap(cell->getPort(ID::Y));
|
||||||
|
|
||||||
// the $pos cell just passes through, all other cells need an actual operation applied
|
// the $pos/$buf cells just pass through, all other cells need an actual operation applied
|
||||||
int nid = nid_a;
|
int nid = nid_a;
|
||||||
if (cell->type != ID($pos))
|
if (!cell->type.in(ID($pos), ID($buf), ID($_BUF_)))
|
||||||
{
|
{
|
||||||
log_assert(!btor_op.empty());
|
log_assert(!btor_op.empty());
|
||||||
int sid = get_bv_sid(width);
|
int sid = get_bv_sid(width);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue