mirror of
https://github.com/verilator/verilator.git
synced 2025-04-06 04:32:39 +00:00
Update error as misnamed port dtype might be interface
This commit is contained in:
parent
b16b48f458
commit
4781a6046a
@ -4137,7 +4137,7 @@ class LinkDotResolveVisitor final : public VNVisitor {
|
||||
if (foundp) {
|
||||
nodep->v3error("Expecting a data type: " << nodep->prettyNameQ());
|
||||
} else {
|
||||
nodep->v3error("Can't find typedef: " << nodep->prettyNameQ());
|
||||
nodep->v3error("Can't find typedef/interface: " << nodep->prettyNameQ());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1520,7 +1520,7 @@ port<nodep>: // ==IEEE: port
|
||||
// // IEEE: interface_port_header port_identifier { unpacked_dimension }
|
||||
// // Expanded interface_port_header
|
||||
// // We use instantCb here because the non-port form looks just like a module instantiation
|
||||
portDirNetE id/*interface*/ portSig variable_dimensionListE sigAttrListE
|
||||
portDirNetE id/*interface*/ portSig variable_dimensionListE sigAttrListE
|
||||
{ // VAR for now, but V3LinkCells may call setIfcaeRef on it later
|
||||
$$ = $3; VARDECL(VAR); VARIO(NONE);
|
||||
AstNodeDType* const dtp = new AstIfaceRefDType{$<fl>2, "", *$2};
|
||||
|
@ -1,4 +1,4 @@
|
||||
%Error: t/t_typedef_no_bad.v:10:4: Can't find typedef: 'sometype'
|
||||
%Error: t/t_typedef_no_bad.v:10:4: Can't find typedef/interface: 'sometype'
|
||||
10 | sometype p;
|
||||
| ^~~~~~~~
|
||||
%Error: Exiting due to
|
||||
|
Loading…
Reference in New Issue
Block a user