Changeset da6396f
- Timestamp:
- Oct 22, 2021, 4:01:11 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- a36eb2d
- Parents:
- 55cbff8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r55cbff8 rda6396f 338 338 PASS( "Gen Init", InitTweak::genInit( translationUnit ) ); 339 339 340 if ( libcfap ) {341 // generate the bodies of cfa library functions342 LibCfa::makeLibCfa( translationUnit );343 } // if344 345 340 CodeTools::fillLocations( translationUnit ); 346 341 … … 356 351 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) ); 357 352 358 // LibCfa::makeLibCfa 353 if ( libcfap ) { 354 // Generate the bodies of cfa library functions. 355 LibCfa::makeLibCfa( transUnit ); 356 } // if 359 357 360 358 if ( declstatsp ) { … … 382 380 383 381 PASS( "Fix Init", InitTweak::fix(transUnit, buildingLibrary())); 382 384 383 translationUnit = convert( move( transUnit ) ); 385 384 } else { 386 385 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) ); 387 386 388 // LibCfa::makeLibCfa 387 if ( libcfap ) { 388 // Generate the bodies of cfa library functions. 389 LibCfa::makeLibCfa( translationUnit ); 390 } // if 389 391 390 392 if ( declstatsp ) {
Note: See TracChangeset
for help on using the changeset viewer.