mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Fix handling of $global_clocking in Verific
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
035f778121
commit
0ac768f9df
|
@ -123,8 +123,11 @@ void VerificImporter::import_attributes(dict<RTLIL::IdString, RTLIL::Const> &att
|
||||||
attributes["\\src"] = stringf("%s:%d", LineFile::GetFileName(obj->Linefile()), LineFile::GetLineNo(obj->Linefile()));
|
attributes["\\src"] = stringf("%s:%d", LineFile::GetFileName(obj->Linefile()), LineFile::GetLineNo(obj->Linefile()));
|
||||||
|
|
||||||
// FIXME: Parse numeric attributes
|
// FIXME: Parse numeric attributes
|
||||||
FOREACH_ATTRIBUTE(obj, mi, attr)
|
FOREACH_ATTRIBUTE(obj, mi, attr) {
|
||||||
|
if (attr->Key()[0] == ' ' || attr->Value() == nullptr)
|
||||||
|
continue;
|
||||||
attributes[RTLIL::escape_id(attr->Key())] = RTLIL::Const(std::string(attr->Value()));
|
attributes[RTLIL::escape_id(attr->Key())] = RTLIL::Const(std::string(attr->Value()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RTLIL::SigSpec VerificImporter::operatorInput(Instance *inst)
|
RTLIL::SigSpec VerificImporter::operatorInput(Instance *inst)
|
||||||
|
@ -1955,6 +1958,9 @@ struct VerificPass : public Pass {
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!verific_error_msg.empty())
|
||||||
|
goto check_error;
|
||||||
|
|
||||||
if (flatten) {
|
if (flatten) {
|
||||||
for (auto nl : nl_todo)
|
for (auto nl : nl_todo)
|
||||||
nl->Flatten();
|
nl->Flatten();
|
||||||
|
|
Loading…
Reference in a new issue