Improve V3EmitV for interfaces (#5796)

This commit is contained in:
Todd Strader
2025-02-21 16:49:14 -05:00
committed by GitHub
parent 2e1fa8f338
commit f7ccc013e7
9 changed files with 70 additions and 10 deletions
+5
View File
@@ -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;