3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

verific: ignore anonymous enums

This commit is contained in:
Eddie Hung 2020-04-30 07:48:47 -07:00
parent 97bfe65d3a
commit 5017ff4a97

View file

@ -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;