Changeset 9554d9b for src/InitTweak
- Timestamp:
- May 27, 2016, 2:38:13 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 4a8c875
- Parents:
- d9f1b2d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
rd9f1b2d 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.