mirror of
https://github.com/verilator/verilator.git
synced 2026-09-03 16:28:53 +02:00
Improve V3EmitV for interfaces (#5796)
This commit is contained in:
@@ -196,6 +196,11 @@ string AstNode::prettyName(const string& namein) VL_PURE {
|
||||
pos += 7;
|
||||
continue;
|
||||
}
|
||||
if (0 == std::strncmp(pos, "__Viftop", 8)) {
|
||||
pretty += "";
|
||||
pos += 8;
|
||||
continue;
|
||||
}
|
||||
if (pos[0] == '_' && pos[1] == '_' && pos[2] == '0' && std::isxdigit(pos[3])
|
||||
&& std::isxdigit(pos[4])) {
|
||||
char value = 0;
|
||||
|
||||
Reference in New Issue
Block a user