Changeset 2f84692 for src/SymTab


Ignore:
Timestamp:
Jul 17, 2018, 5:19:18 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
16a7d84, 679e644
Parents:
8a3ecb9 (diff), 56fba87 (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' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.cc

    r8a3ecb9 r2f84692  
    8585                void previsit( AlignofExpr * );
    8686                void previsit( UntypedOffsetofExpr * );
     87                void previsit( CompoundLiteralExpr * );
    8788                void handleType( Type * );
    8889        };
     
    348349        void HoistTypeDecls::previsit( UntypedOffsetofExpr * expr ) {
    349350                handleType( expr->type );
     351        }
     352
     353        void HoistTypeDecls::previsit( CompoundLiteralExpr * expr ) {
     354                handleType( expr->result );
    350355        }
    351356
Note: See TracChangeset for help on using the changeset viewer.