Changeset a139c11
- Timestamp:
- Sep 25, 2017, 7:55:09 PM (7 years ago)
- 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1bc749f, 2b7bf59, a2d4d1c
- Parents:
- 888339e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SymTab/Autogen.cc ¶
r888339e ra139c11 754 754 declsToAddBefore.push_back( dtorDecl ); 755 755 declsToAddBefore.push_back( assignDecl ); // assignment should come last since it uses copy constructor in return 756 757 return;758 756 } 759 757 760 758 void AutogenTupleRoutines::previsit( FunctionDecl *functionDecl ) { 761 759 visit_children = false; 762 functionDecl->set_functionType( maybeMutate( functionDecl->type, *visitor ));760 maybeAccept( functionDecl->type, *visitor ); 763 761 functionNesting += 1; 764 functionDecl->set_statements( maybeMutate( functionDecl->statements, *visitor ));762 maybeAccept( functionDecl->statements, *visitor ); 765 763 functionNesting -= 1; 766 764 }
Note: See TracChangeset
for help on using the changeset viewer.