Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r8e48fca4 ra36eb2d  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Fri Oct 29 16:34:00 2021
    13 // Update Count     : 655
     12// Last Modified On : Fri Oct 22 16:06:00 2021
     13// Update Count     : 653
    1414//
    1515
     
    335335                PASS( "Translate Throws", ControlStruct::translateThrows( translationUnit ) );
    336336                PASS( "Fix Labels", ControlStruct::fixLabels( translationUnit ) );
     337                PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
    337338
    338339                CodeTools::fillLocations( translationUnit );
     
    347348                        forceFillCodeLocations( transUnit );
    348349
    349                         PASS( "Fix Names", CodeGen::fixNames( transUnit ) );
    350350                        PASS( "Gen Init", InitTweak::genInit( transUnit ) );
    351351                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) );
     
    383383                        translationUnit = convert( move( transUnit ) );
    384384                } else {
    385                         PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
    386385                        PASS( "Gen Init", InitTweak::genInit( translationUnit ) );
    387386                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
     
    472471                PASS( "Code Gen", CodeGen::generate( translationUnit, *output, ! genproto, prettycodegenp, true, linemarks ) );
    473472
    474                 CodeGen::FixMain::fix( translationUnit, *output,
    475                                 (PreludeDirector + "/bootloader.c").c_str() );
     473                CodeGen::FixMain::fix( *output, (PreludeDirector + "/bootloader.c").c_str() );
    476474                if ( output != &cout ) {
    477475                        delete output;
Note: See TracChangeset for help on using the changeset viewer.