Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/InitTweak.cc

    r14c0f7b rb7c53a9d  
    891891                                dst = new ast::AddressExpr(dst);
    892892                        }
    893                 } else {
     893                }
     894                else {
    894895                        dst = new ast::CastExpr(dst, new ast::ReferenceType(dst->result, {}));
    895896                }
     
    899900                        }
    900901                }
    901                 auto var = ast::VariableExpr::functionPointer(dst->location, assign);
    902                 auto app = new ast::ApplicationExpr(dst->location, var, {dst, src});
    903                 // Skip the resolver, just set the result to the correct type.
    904                 app->result = ast::deepCopy( src->result );
    905                 return app;
     902                return new ast::ApplicationExpr(dst->location, ast::VariableExpr::functionPointer(dst->location, assign), {dst, src});
    906903        }
    907904
Note: See TracChangeset for help on using the changeset viewer.