Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/ExceptTranslate.cc

    r6fca7ea rad0be81  
    1010// Created On       : Wed Jun 14 16:49:00 2017
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Jul 12 15:07:00 2017
    13 // Update Count     : 3
     12// Last Modified On : Fri Jun 30 13:30:00 2017
     13// Update Count     : 1
    1414//
    1515
     
    157157        Statement * create_terminate_throw( ThrowStmt *throwStmt ) {
    158158                // { int NAME = EXPR; __throw_terminate( &NAME ); }
    159                 return create_given_throw( "__cfaehm__throw_terminate", throwStmt );
     159                return create_given_throw( "__cfaehm__throw_termination", throwStmt );
    160160        }
    161161        Statement * create_terminate_rethrow( ThrowStmt *throwStmt ) {
     
    164164                Statement * result = new ExprStmt(
    165165                        throwStmt->get_labels(),
    166                         new UntypedExpr( new NameExpr( "__cfaehm__rethrow_terminate" ) )
     166                        new UntypedExpr( new NameExpr( "__cfaehm__rethrow_termination" ) )
    167167                        );
    168168                delete throwStmt;
     
    171171        Statement * create_resume_throw( ThrowStmt *throwStmt ) {
    172172                // __throw_resume( EXPR );
    173                 return create_given_throw( "__cfaehm__throw_resume", throwStmt );
     173                return create_given_throw( "__cfaehm__throw_resumption", throwStmt );
    174174        }
    175175        Statement * create_resume_rethrow( ThrowStmt *throwStmt ) {
     
    593593
    594594                PassVisitor<ExceptionMutatorCore> translator;
    595                 mutateAll( translationUnit, translator );
     595                for ( Declaration * decl : translationUnit ) {
     596                        decl->acceptMutator( translator );
     597                }
    596598        }
    597599}
Note: See TracChangeset for help on using the changeset viewer.