Changes in src/main.cc [4ec9513:0c939dd]
- File:
-
- 1 edited
-
src/main.cc (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r4ec9513 r0c939dd 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Apr 13 11:11:00 202213 // Update Count : 67 212 // Last Modified On : Fri Apr 29 9:52:00 2022 13 // Update Count : 673 14 14 // 15 15 … … 75 75 #include "Tuples/Tuples.h" // for expandMemberTuples, expan... 76 76 #include "Validate/Autogen.hpp" // for autogenerateRoutines 77 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 78 #include "Validate/EliminateTypedef.hpp" // for eliminateTypedef 79 #include "Validate/FindSpecialDecls.h" // for findGlobalDecls 80 #include "Validate/FixQualifiedTypes.hpp" // for fixQualifiedTypes 81 #include "Validate/ForallPointerDecay.hpp" // for decayForallPointers 77 82 #include "Validate/GenericParameter.hpp" // for fillGenericParameters, tr... 78 #include "Validate/FindSpecialDecls.h" // for findGlobalDecls 79 #include "Validate/ForallPointerDecay.hpp" // for decayForallPointers 80 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 83 #include "Validate/HoistStruct.hpp" // for hoistStruct 81 84 #include "Validate/InitializerLength.hpp" // for setLengthFromInitializer 82 85 #include "Validate/LabelAddressFixer.hpp" // for fixLabelAddresses … … 328 331 // add the assignment statement after the initialization of a type parameter 329 332 PASS( "Validate-A", SymTab::validate_A( translationUnit ) ); 330 PASS( "Validate-B", SymTab::validate_B( translationUnit ) ); 333 334 // Must happen before auto-gen, because it uses the sized flag. 335 PASS( "Link Reference To Types", SymTab::linkReferenceToTypes( translationUnit ) ); 331 336 332 337 CodeTools::fillLocations( translationUnit ); … … 342 347 343 348 forceFillCodeLocations( transUnit ); 349 350 // Must happen after Link References To Types, 351 // because aggregate members are accessed. 352 PASS( "Fix Qualified Types", Validate::fixQualifiedTypes( transUnit ) ); 353 354 PASS( "Hoist Struct", Validate::hoistStruct( transUnit ) ); 355 PASS( "Eliminate Typedef", Validate::eliminateTypedef( transUnit ) ); 344 356 345 357 // Check as early as possible. Can't happen before … … 438 450 translationUnit = convert( move( transUnit ) ); 439 451 } else { 452 PASS( "Validate-B", SymTab::validate_B( translationUnit ) ); 440 453 PASS( "Validate-C", SymTab::validate_C( translationUnit ) ); 441 454 PASS( "Validate-D", SymTab::validate_D( translationUnit ) );
Note:
See TracChangeset
for help on using the changeset viewer.