Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    ra36eb2d r8e48fca4  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Fri Oct 22 16:06:00 2021
    13 // Update Count     : 653
     12// Last Modified On : Fri Oct 29 16:34:00 2021
     13// Update Count     : 655
    1414//
    1515
     
    335335                PASS( "Translate Throws", ControlStruct::translateThrows( translationUnit ) );
    336336                PASS( "Fix Labels", ControlStruct::fixLabels( translationUnit ) );
    337                 PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
    338337
    339338                CodeTools::fillLocations( translationUnit );
     
    348347                        forceFillCodeLocations( transUnit );
    349348
     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 ) );
    385386                        PASS( "Gen Init", InitTweak::genInit( translationUnit ) );
    386387                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
     
    471472                PASS( "Code Gen", CodeGen::generate( translationUnit, *output, ! genproto, prettycodegenp, true, linemarks ) );
    472473
    473                 CodeGen::FixMain::fix( *output, (PreludeDirector + "/bootloader.c").c_str() );
     474                CodeGen::FixMain::fix( translationUnit, *output,
     475                                (PreludeDirector + "/bootloader.c").c_str() );
    474476                if ( output != &cout ) {
    475477                        delete output;
Note: See TracChangeset for help on using the changeset viewer.