Ignore:
Timestamp:
Apr 28, 2015, 4:21:36 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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, string, with_gc
Children:
42e2ad7
Parents:
ad17ba6a
Message:

fixed sizeof type variable, find lowest cost alternative for sizeof expression, removed unused classes, added compiler flag, remove temporary file for -CFA, formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/GenPoly/Box.cc

    rad17ba6a rbdd516a  
    772772        Expression *Pass1::mutate( AddressExpr *addrExpr ) {
    773773            assert( !addrExpr->get_arg()->get_results().empty() );
    774             mutateExpression( addrExpr->get_arg() );
     774            addrExpr->set_arg( mutateExpression( addrExpr->get_arg() ) );
    775775            if ( isPolyType( addrExpr->get_arg()->get_results().front(), env, scopeTyVars ) ) {
    776776                Expression *ret = addrExpr->get_arg();
Note: See TracChangeset for help on using the changeset viewer.