Changes in src/main.cc [2cf3b87:ce36b55]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r2cf3b87 rce36b55 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Tue Nov 30 10:25:00 202113 // Update Count : 65 912 // Last Modified On : Fri Nov 12 11:06:00 2021 13 // Update Count : 658 14 14 // 15 15 … … 50 50 #include "Common/UnimplementedError.h" // for UnimplementedError 51 51 #include "Common/utility.h" // for deleteAll, filter, printAll 52 #include "Concurrency/Keywords.h" // for implementMutex, implement...53 52 #include "Concurrency/Waitfor.h" // for generateWaitfor 54 53 #include "ControlStruct/ExceptDecl.h" // for translateExcept … … 74 73 #include "Tuples/Tuples.h" // for expandMemberTuples, expan... 75 74 #include "Validate/FindSpecialDecls.h" // for findGlobalDecls 76 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals77 75 #include "Validate/InitializerLength.hpp" // for setLengthFromInitializer 78 76 #include "Validate/LabelAddressFixer.hpp" // for fixLabelAddresses … … 327 325 PASS( "Validate-C", SymTab::validate_C( translationUnit ) ); 328 326 PASS( "Validate-D", SymTab::validate_D( translationUnit ) ); 327 PASS( "Validate-E", SymTab::validate_E( translationUnit ) ); 329 328 330 329 CodeTools::fillLocations( translationUnit ); … … 339 338 forceFillCodeLocations( transUnit ); 340 339 341 PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) );342 PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );343 PASS( "Compound Literal", Validate::handleCompoundLiterals( transUnit ) );344 340 PASS( "Set Length From Initializer", Validate::setLengthFromInitializer( transUnit ) ); 345 341 PASS( "Find Global Decls", Validate::findGlobalDecls( transUnit ) ); … … 406 402 translationUnit = convert( move( transUnit ) ); 407 403 } else { 408 PASS( "Validate-E", SymTab::validate_E( translationUnit ) );409 404 PASS( "Validate-F", SymTab::validate_F( translationUnit ) ); 410 405
Note:
See TracChangeset
for help on using the changeset viewer.