Fix internal signal names containing control characters (broke in 3.680).

Internally this means for signal names use __0{xdigit}{xdigit} and avoid
__0 in other cases.
This commit is contained in:
Wilson Snyder
2008-11-17 21:02:10 -05:00
parent 13f6c5a934
commit b75ff3652c
10 changed files with 26 additions and 21 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ private:
}
AstVar* getBlockTemp(AstNode* nodep) {
string newvarname = ((string)"__Vtemp__"+cvtToStr(m_modp->varNumGetInc()));
string newvarname = ((string)"__Vtemp"+cvtToStr(m_modp->varNumGetInc()));
AstVar* varp = new AstVar (nodep->fileline(), AstVarType::STMTTEMP, newvarname,
new AstRange(nodep->fileline(), nodep->widthMin()-1, 0));
m_funcp->addInitsp(varp);