Changes in src/MakeLibCfa.cc [10295d8:ba3706f]
- File:
-
- 1 edited
-
src/MakeLibCfa.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/MakeLibCfa.cc
r10295d8 rba3706f 116 116 } // for 117 117 118 funcDecl->set_statements( new CompoundStmt( std::list< Label >()) );118 funcDecl->set_statements( new CompoundStmt() ); 119 119 newDecls.push_back( funcDecl ); 120 120 … … 130 130 case CodeGen::OT_INFIXASSIGN: 131 131 // return the recursive call 132 stmt = new ReturnStmt( n oLabels, newExpr );132 stmt = new ReturnStmt( newExpr ); 133 133 break; 134 134 case CodeGen::OT_CTOR: 135 135 case CodeGen::OT_DTOR: 136 136 // execute the recursive call 137 stmt = new ExprStmt( n oLabels, newExpr );137 stmt = new ExprStmt( newExpr ); 138 138 break; 139 139 case CodeGen::OT_CONSTANT:
Note:
See TracChangeset
for help on using the changeset viewer.