mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
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;
|
return;
|
||||||
if (nl->IsFromVhdl() && strcmp(type_range->GetTypeName(), "STD_LOGIC") == 0)
|
if (nl->IsFromVhdl() && strcmp(type_range->GetTypeName(), "STD_LOGIC") == 0)
|
||||||
return;
|
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;
|
MapIter mi;
|
||||||
const char *k, *v;
|
const char *k, *v;
|
||||||
|
|
Loading…
Reference in a new issue