Changeset d4778a6 for translator/ControlStruct
- Timestamp:
- May 11, 2015, 3:11:49 PM (11 years ago)
- 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, string, with_gc
- Children:
- b1a6d6b, c11e31c
- Parents:
- 48e99f2
- File:
-
- 1 edited
-
translator/ControlStruct/ForExprMutator.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
translator/ControlStruct/ForExprMutator.cc
r48e99f2 rd4778a6 5 5 namespace ControlStruct { 6 6 Statement *ForExprMutator::mutate( ForStmt *forStmt ) { 7 DeclStmt *decl;8 if ( ( decl = dynamic_cast< DeclStmt * > ( forStmt->get_initialization() )) != 0) {7 forStmt->set_body( forStmt->get_body()->acceptMutator( *this ) ); 8 if ( DeclStmt *decl = dynamic_cast< DeclStmt * > ( forStmt->get_initialization() ) ) { 9 9 // create compound statement, move declaration outside, leave _for_ as-is 10 10 CompoundStmt *block = new CompoundStmt( std::list< Label >() );
Note:
See TracChangeset
for help on using the changeset viewer.