Changeset d672350 for src/main.cc
- Timestamp:
- Mar 21, 2022, 1:44:06 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- a76202d
- Parents:
- ef3c383 (diff), dbe2533 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
ref3c383 rd672350 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed Jan 26 14:09:00 202213 // Update Count : 67 012 // Last Modified On : Fri Mar 11 10:39:00 2022 13 // Update Count : 671 14 14 // 15 15 … … 76 76 #include "Validate/Autogen.hpp" // for autogenerateRoutines 77 77 #include "Validate/FindSpecialDecls.h" // for findGlobalDecls 78 #include "Validate/ForallPointerDecay.hpp" // for decayForallPointers 78 79 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 79 80 #include "Validate/InitializerLength.hpp" // for setLengthFromInitializer … … 331 332 332 333 if( useNewAST ) { 333 PASS( "Apply Concurrent Keywords", Concurrency::applyKeywords( translationUnit ) );334 PASS( "Forall Pointer Decay", SymTab::decayForallPointers( translationUnit ) );335 334 CodeTools::fillLocations( translationUnit ); 336 335 … … 342 341 343 342 forceFillCodeLocations( transUnit ); 343 344 PASS( "Implement Concurrent Keywords", Concurrency::implementKeywords( transUnit ) ); 345 346 // Must be after implement concurrent keywords; because uniqueIds 347 // must be set on declaration before resolution. 348 // Must happen before autogen routines are added. 349 PASS( "Forall Pointer Decay", Validate::decayForallPointers( transUnit ) ); 344 350 345 351 // Must happen before autogen routines are added. … … 487 493 PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) ); 488 494 } 489 490 491 495 492 496 PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
Note:
See TracChangeset
for help on using the changeset viewer.