Changeset 65197c2 for src/CodeGen
- Timestamp:
- Dec 5, 2017, 2:17:17 PM (8 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:
- 971d9f2, a85e44c, c13e8dc8
- Parents:
- 12d2dc8 (diff), 866f560 (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. - Location:
- src/CodeGen
- Files:
-
- 2 edited
-
CodeGenerator.cc (modified) (1 diff)
-
CodeGenerator.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
r12d2dc8 r65197c2 1012 1012 } 1013 1013 1014 void CodeGenerator::postvisit( WithStmt * with ) { 1015 if ( ! genC ) { 1016 output << "with ( "; 1017 genCommaList( with->exprs.begin(), with->exprs.end() ); 1018 output << " ) "; 1019 } 1020 with->stmt->accept( *visitor ); 1021 } 1014 1022 1015 1023 void CodeGenerator::postvisit( WhileStmt * whileStmt ) { -
src/CodeGen/CodeGenerator.h
r12d2dc8 r65197c2 102 102 void postvisit( CatchStmt * ); 103 103 void postvisit( WaitForStmt * ); 104 void postvisit( WithStmt * ); 104 105 void postvisit( WhileStmt * ); 105 106 void postvisit( ForStmt * );
Note:
See TracChangeset
for help on using the changeset viewer.