Changeset c13e8dc8 for src/CodeGen/CodeGenerator.cc
- Timestamp:
- Dec 5, 2017, 2:35:03 PM (8 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- f9feab8
- Parents:
- 9c35431 (diff), 65197c2 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
r9c35431 rc13e8dc8 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 ) {
Note:
See TracChangeset
for help on using the changeset viewer.