Internals: Cleanup Dead code

This commit is contained in:
Wilson Snyder 2011-07-06 18:46:41 -04:00
parent a9ba4a9fcd
commit 1b3d252bfe
2 changed files with 0 additions and 8 deletions

View File

@ -1453,13 +1453,6 @@ AstNode* V3Width::widthParamsEdit(AstNode* nodep) {
return nodep; return nodep;
} }
AstNode* V3Width::widthParamsEditIfNeed(AstNode* nodep) {
if (!nodep->width()) {
nodep = V3Width::widthParamsEdit(nodep);
}
return nodep;
}
void V3Width::widthCommit(AstNetlist* nodep) { void V3Width::widthCommit(AstNetlist* nodep) {
UINFO(2,__FUNCTION__<<": "<<endl); UINFO(2,__FUNCTION__<<": "<<endl);
WidthCommitVisitor visitor (nodep); WidthCommitVisitor visitor (nodep);

View File

@ -34,7 +34,6 @@ public:
static void width(AstNetlist* nodep); static void width(AstNetlist* nodep);
// Smaller step... Only do a single node for parameter propagation // Smaller step... Only do a single node for parameter propagation
static AstNode* widthParamsEdit(AstNode* nodep); static AstNode* widthParamsEdit(AstNode* nodep);
static AstNode* widthParamsEditIfNeed(AstNode* nodep);
// Final step... Mark all widths as equal // Final step... Mark all widths as equal
static void widthCommit(AstNetlist* nodep); static void widthCommit(AstNetlist* nodep);