Changeset 92a6e02 for src/AST


Ignore:
Timestamp:
Aug 15, 2019, 1:32:35 PM (6 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:
a6f26ca
Parents:
ba417e2 (diff), c570806 (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/AST
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    rba417e2 r92a6e02  
    953953        // For now this isn't visited, it is unclear if this causes problem
    954954        // if all tests are known to pass, remove this code
    955         // VISIT(
    956         //      maybe_accept( node, &ImplicitCtorDtorStmt::callStmt );
    957         // )
     955        VISIT(
     956                maybe_accept( node, &ImplicitCtorDtorStmt::callStmt );
     957        )
    958958
    959959        VISIT_END( Stmt, node );
  • src/AST/Stmt.hpp

    rba417e2 r92a6e02  
    399399class ImplicitCtorDtorStmt final : public Stmt {
    400400public:
    401         readonly<Stmt> callStmt;
     401        ptr<Stmt> callStmt;
    402402
    403403        ImplicitCtorDtorStmt( const CodeLocation & loc, const Stmt * callStmt,
Note: See TracChangeset for help on using the changeset viewer.