Changeset eb8d791 for src/main.cc


Ignore:
Timestamp:
Apr 12, 2023, 3:10:28 PM (15 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, master
Children:
52f9804
Parents:
153d3440
Message:

CandidateFinder? fills in the CodeLocation? on a generated expression. With that and recent changes, the fills seem to be redundent now, so I removed them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r153d3440 reb8d791  
    310310
    311311                PASS( "Hoist Type Decls", Validate::hoistTypeDecls( transUnit ) );
    312                 // Hoist Type Decls pulls some declarations out of contexts where
    313                 // locations are not tracked. Perhaps they should be, but for now
    314                 // the full fill solves it.
    315                 forceFillCodeLocations( transUnit );
    316312
    317313                PASS( "Translate Exception Declarations", ControlStruct::translateExcept( transUnit ) );
     
    343339                PASS( "Implement Actors", Concurrency::implementActors( transUnit ) );
    344340        PASS( "Implement Virtual Destructors", Virtual::implementVirtDtors(transUnit) );
    345        
    346341                PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) );
    347342                PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
     
    396391                        return EXIT_SUCCESS;
    397392                } // if
    398 
    399                 forceFillCodeLocations( transUnit );
    400393
    401394                PASS( "Fix Init", InitTweak::fix(transUnit, buildingLibrary()));
Note: See TracChangeset for help on using the changeset viewer.