Changes in src/main.cc [8e48fca4:a36eb2d]
- File:
-
- 1 edited
-
src/main.cc (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r8e48fca4 ra36eb2d 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Fri Oct 2 9 16:34:00 202113 // Update Count : 65 512 // Last Modified On : Fri Oct 22 16:06:00 2021 13 // Update Count : 653 14 14 // 15 15 … … 335 335 PASS( "Translate Throws", ControlStruct::translateThrows( translationUnit ) ); 336 336 PASS( "Fix Labels", ControlStruct::fixLabels( translationUnit ) ); 337 PASS( "Fix Names", CodeGen::fixNames( translationUnit ) ); 337 338 338 339 CodeTools::fillLocations( translationUnit ); … … 347 348 forceFillCodeLocations( transUnit ); 348 349 349 PASS( "Fix Names", CodeGen::fixNames( transUnit ) );350 350 PASS( "Gen Init", InitTweak::genInit( transUnit ) ); 351 351 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) ); … … 383 383 translationUnit = convert( move( transUnit ) ); 384 384 } else { 385 PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );386 385 PASS( "Gen Init", InitTweak::genInit( translationUnit ) ); 387 386 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) ); … … 472 471 PASS( "Code Gen", CodeGen::generate( translationUnit, *output, ! genproto, prettycodegenp, true, linemarks ) ); 473 472 474 CodeGen::FixMain::fix( translationUnit, *output, 475 (PreludeDirector + "/bootloader.c").c_str() ); 473 CodeGen::FixMain::fix( *output, (PreludeDirector + "/bootloader.c").c_str() ); 476 474 if ( output != &cout ) { 477 475 delete output;
Note:
See TracChangeset
for help on using the changeset viewer.