Changeset b21c77a for src/main.cc


Ignore:
Timestamp:
Jun 29, 2018, 4:14:15 PM (7 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
new-env
Children:
184557e
Parents:
97397a26 (diff), 28f3a19 (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.
Message:

Merge remote-tracking branch 'origin/with_gc' into new-env

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r97397a26 rb21c77a  
    1111// Created On       : Fri May 15 23:12:02 2015
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Mon May  7 14:35:57 2018
    14 // Update Count     : 492
     13// Last Modified On : Wed Jun  6 15:51:47 2018
     14// Update Count     : 498
    1515//
    1616
     
    160160                 << "." << endl;
    161161        backtrace( 2 );                                                                         // skip first 2 stack frames
    162         exit( EXIT_FAILURE );
     162        //_exit( EXIT_FAILURE );
     163        abort();
    163164} // sigSegvBusHandler
    164165
     
    261262                } // if
    262263
    263                 PASS( "mutate", ControlStruct::mutate( translationUnit ) );
     264                PASS( "fixLabels", ControlStruct::fixLabels( translationUnit ) );
    264265                PASS( "fixNames", CodeGen::fixNames( translationUnit ) );
    265266                PASS( "genInit", InitTweak::genInit( translationUnit ) );
     
    571572        yyin = input;
    572573        yylineno = 1;
    573         typedefTable.enterScope();
    574574        int parseStatus = yyparse();
    575575
Note: See TracChangeset for help on using the changeset viewer.