mirror of https://github.com/YosysHQ/yosys.git
Fixed -stbv handling in SMT2 back-end
This commit is contained in:
parent
2b00c1dbd6
commit
25a864fc73
|
@ -766,7 +766,7 @@ struct Smt2Worker
|
||||||
|
|
||||||
if (statebv)
|
if (statebv)
|
||||||
makebits(stringf("%s_h %s", get_id(module), get_id(cell->name)), mod_stbv_width.at(cell->type));
|
makebits(stringf("%s_h %s", get_id(module), get_id(cell->name)), mod_stbv_width.at(cell->type));
|
||||||
if (statedt)
|
else if (statedt)
|
||||||
dtmembers.push_back(stringf(" (|%s_h %s| |%s_s|)\n",
|
dtmembers.push_back(stringf(" (|%s_h %s| |%s_s|)\n",
|
||||||
get_id(module), get_id(cell->name), get_id(cell->type)));
|
get_id(module), get_id(cell->name), get_id(cell->type)));
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue