Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/FixInit.cc

    r7b3f66b r9554d9b  
    131131                                // optimization: don't need to copy construct in order to call intrinsic functions
    132132                                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 );
    135137                                if ( (funcDecl->get_name() == "?{}" || funcDecl->get_name() == "?=?") && ftype->get_parameters().size() == 2 ) {
    136138                                        Type * t1 = ftype->get_parameters().front()->get_type();
     
    138140                                        PointerType * ptrType = dynamic_cast< PointerType * > ( t1 );
    139141                                        assert( ptrType );
     142
    140143                                        if ( ResolvExpr::typesCompatible( ptrType->get_base(), t2, SymTab::Indexer() ) ) {
    141144                                                // 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.