Changeset f8d05ee for src/Tuples


Ignore:
Timestamp:
Aug 12, 2020, 12:19:39 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
74807be, fb0ae06
Parents:
7f66cec (diff), 7ff3e522 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'new-ast' of plg.uwaterloo.ca:software/cfa/cfa-cc into new-ast

Location:
src/Tuples
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Tuples/Explode.cc

    r7f66cec rf8d05ee  
    179179        ast::Pass<CastExploderCore> exploder;
    180180        expr = expr->accept( exploder );
    181         if ( ! exploder.pass.foundUniqueExpr ) {
     181        if ( ! exploder.core.foundUniqueExpr ) {
    182182                expr = new ast::CastExpr{ expr, new ast::ReferenceType{ expr->result } };
    183183        }
  • src/Tuples/Tuples.cc

    r7f66cec rf8d05ee  
    5353                ast::Pass<Detector> detector;
    5454                expr->accept( detector );
    55                 return detector.pass.maybeImpure;
     55                return detector.core.maybeImpure;
    5656        }
    5757} // namespace
Note: See TracChangeset for help on using the changeset viewer.