Ignore:
Timestamp:
Jun 30, 2016, 4:32:56 PM (10 years ago)
Author:
Thierry Delisle <tdelisle@…>
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, with_gc
Children:
ea29e73
Parents:
1b5c81ed (diff), 84d4d6f (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 'master' into gc_noraii

Conflicts:

Jenkinsfile
src/SymTab/Validate.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.h

    r1b5c81ed rf80e0218  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Mutator.h -- 
     7// Mutator.h --
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Apr  1 17:26:56 2016
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Thu Apr 14 15:32:00 2016
    1313// Update Count     : 10
    1414//
     
    5252        virtual NullStmt* mutate( NullStmt *nullStmt );
    5353        virtual Statement* mutate( DeclStmt *declStmt );
     54        virtual Statement* mutate( ImplicitCtorDtorStmt *impCtorDtorStmt );
    5455
    5556        virtual Expression* mutate( ApplicationExpr *applicationExpr );
     
    6263        virtual Expression* mutate( MemberExpr *memberExpr );
    6364        virtual Expression* mutate( VariableExpr *variableExpr );
    64         virtual Expression* mutate( ConstantExpr *constantExpr ); 
     65        virtual Expression* mutate( ConstantExpr *constantExpr );
    6566        virtual Expression* mutate( SizeofExpr *sizeofExpr );
    6667        virtual Expression* mutate( AlignofExpr *alignofExpr );
     
    7677        virtual Expression* mutate( TypeExpr *typeExpr );
    7778        virtual Expression* mutate( AsmExpr *asmExpr );
     79        virtual Expression* mutate( ImplicitCopyCtorExpr *impCpCtorExpr );
    7880        virtual Expression* mutate( UntypedValofExpr *valofExpr );
    7981        virtual Expression* mutate( CompoundLiteralExpr *compLitExpr );
     
    9698        virtual Initializer* mutate( SingleInit *singleInit );
    9799        virtual Initializer* mutate( ListInit *listInit );
     100        virtual Initializer* mutate( ConstructorInit *ctorInit );
    98101
    99102        virtual Subrange *mutate( Subrange *subrange );
Note: See TracChangeset for help on using the changeset viewer.