mirror of https://github.com/YosysHQ/yosys.git
verific: ignore anonymous enums
This commit is contained in:
parent
97bfe65d3a
commit
5017ff4a97
|
@ -172,7 +172,10 @@ void VerificImporter::import_attributes(dict<RTLIL::IdString, RTLIL::Const> &att
|
|||
return;
|
||||
if (nl->IsFromVhdl() && strcmp(type_range->GetTypeName(), "STD_LOGIC") == 0)
|
||||
return;
|
||||
attributes.emplace(ID::wiretype, RTLIL::escape_id(type_range->GetTypeName()));
|
||||
auto type_name = type_range->GetTypeName();
|
||||
if (!type_name)
|
||||
return;
|
||||
attributes.emplace(ID::wiretype, RTLIL::escape_id(type_name));
|
||||
|
||||
MapIter mi;
|
||||
const char *k, *v;
|
||||
|
|
Loading…
Reference in New Issue