Changes in src/MakeLibCfa.cc [ba3706f:10295d8]
- File:
-
- 1 edited
-
src/MakeLibCfa.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/MakeLibCfa.cc
rba3706f r10295d8 116 116 } // for 117 117 118 funcDecl->set_statements( new CompoundStmt( ) );118 funcDecl->set_statements( new CompoundStmt( std::list< Label >() ) ); 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 ewExpr );132 stmt = new ReturnStmt( noLabels, 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 ewExpr );137 stmt = new ExprStmt( noLabels, newExpr ); 138 138 break; 139 139 case CodeGen::OT_CONSTANT:
Note:
See TracChangeset
for help on using the changeset viewer.