You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got an error "Accessing member of a slice of type AST_UNION is unsupported.
This is triggered in uhdm_ast.cc
I believe changing line 965 else if (current_struct_elem->type == AST::AST_STRUCT)
to else if (current_struct_elem->type == AST::AST_STRUCT || current_struct_elem->type == AST::AST_UNION)
fixes this. At least in my use case.
The text was updated successfully, but these errors were encountered:
I got an error "Accessing member of a slice of type AST_UNION is unsupported.
This is triggered in uhdm_ast.cc
I believe changing line 965
else if (current_struct_elem->type == AST::AST_STRUCT)
to
else if (current_struct_elem->type == AST::AST_STRUCT || current_struct_elem->type == AST::AST_UNION)
fixes this. At least in my use case.
The text was updated successfully, but these errors were encountered: