Changes in src/InitTweak/FixInit.cc [7b3f66b:9554d9b]
- File:
-
- 1 edited
-
src/InitTweak/FixInit.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
r7b3f66b r9554d9b 131 131 // optimization: don't need to copy construct in order to call intrinsic functions 132 132 return appExpr; 133 } else if ( FunctionDecl * funcDecl = dynamic_cast< FunctionDecl * > ( function->get_var() ) ) { 134 FunctionType * ftype = funcDecl->get_functionType(); 133 } else if ( DeclarationWithType * funcDecl = dynamic_cast< DeclarationWithType * > ( function->get_var() ) ) { 134 // FunctionType * ftype = funcDecl->get_functionType(); 135 FunctionType * ftype = dynamic_cast< FunctionType * >( GenPoly::getFunctionType( funcDecl->get_type() ) ); 136 assert( ftype ); 135 137 if ( (funcDecl->get_name() == "?{}" || funcDecl->get_name() == "?=?") && ftype->get_parameters().size() == 2 ) { 136 138 Type * t1 = ftype->get_parameters().front()->get_type(); … … 138 140 PointerType * ptrType = dynamic_cast< PointerType * > ( t1 ); 139 141 assert( ptrType ); 142 140 143 if ( ResolvExpr::typesCompatible( ptrType->get_base(), t2, SymTab::Indexer() ) ) { 141 144 // optimization: don't need to copy construct in order to call a copy constructor or
Note:
See TracChangeset
for help on using the changeset viewer.