Changeset 6b608c7
- Timestamp:
 - Dec 21, 2022, 3:24:47 PM (3 years ago)
 - Branches:
 - ADT, ast-experimental, master
 - Children:
 - b797d978
 - Parents:
 - df9e412
 - File:
 - 
      
- 1 edited
 
- 
          
  src/main.cc (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
src/main.cc
rdf9e412 r6b608c7 320 320 forceFillCodeLocations( transUnit ); 321 321 322 PASS( "Translate Exception Declarations", ControlStruct::translateExcept( transUnit ) );323 if ( exdeclp ) {324 dump( std::move( transUnit ) );325 return EXIT_SUCCESS;326 }327 328 PASS( "Verify Ctor, Dtor & Assign", Validate::verifyCtorDtorAssign( transUnit ) );329 322 PASS( "Hoist Type Decls", Validate::hoistTypeDecls( transUnit ) ); 330 323 // Hoist Type Decls pulls some declarations out of contexts where … … 333 326 forceFillCodeLocations( transUnit ); 334 327 328 PASS( "Translate Exception Declarations", ControlStruct::translateExcept( transUnit ) ); 329 if ( exdeclp ) { 330 dump( std::move( transUnit ) ); 331 return EXIT_SUCCESS; 332 } 333 334 PASS( "Verify Ctor, Dtor & Assign", Validate::verifyCtorDtorAssign( transUnit ) ); 335 335 PASS( "Replace Typedefs", Validate::replaceTypedef( transUnit ) ); 336 336 PASS( "Fix Return Types", Validate::fixReturnTypes( transUnit ) );  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.