Fix auto-indentation of AstCStmts - again

This commit is contained in:
Wilson Snyder
2009-12-02 19:32:41 -05:00
parent 1da07a3b86
commit 2f2f416bea
7 changed files with 36 additions and 16 deletions
+2 -3
View File
@@ -232,9 +232,8 @@ private:
funcp->slow(true);
funcp->isStatic(false);
funcp->entryPoint(true);
funcp->addInitsp(
new AstCStmt(nodep->fileline(),
" "+EmitCBaseVisitor::symClassVar()+" = this->__VlSymsp;\n"));
funcp->addInitsp(new AstCStmt(nodep->fileline(),
EmitCBaseVisitor::symClassVar()+" = this->__VlSymsp;\n"));
funcp->addInitsp(new AstCStmt(nodep->fileline(), EmitCBaseVisitor::symTopAssign()+"\n"));
m_scopep->addActivep(funcp);
m_finalFuncp = funcp;