Changes in / [b6e0b61:86c12d65]
- Location:
- src
- Files:
-
- 1 deleted
- 4 edited
-
Concurrency/Waitfor.cc (modified) (1 diff)
-
Concurrency/Waitfor.h (modified) (1 diff)
-
Concurrency/WaitforNew.cpp (deleted)
-
Concurrency/module.mk (modified) (1 diff)
-
main.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Waitfor.cc
rb6e0b61 r86c12d65 56 56 | | 57 57 | | 58 | |58 | | 59 59 | | 60 60 | | -
src/Concurrency/Waitfor.h
rb6e0b61 r86c12d65 19 19 20 20 class Declaration; 21 namespace ast {22 class TranslationUnit;23 }24 21 25 22 namespace Concurrency { 26 23 void generateWaitFor( std::list< Declaration * > & translationUnit ); 27 28 void generateWaitFor( ast::TranslationUnit & translationUnit );29 24 }; 30 25 -
src/Concurrency/module.mk
rb6e0b61 r86c12d65 19 19 Concurrency/Keywords.cc \ 20 20 Concurrency/Keywords.h \ 21 Concurrency/WaitforNew.cpp \22 21 Concurrency/Waitfor.cc \ 23 22 Concurrency/Waitfor.h -
src/main.cc
rb6e0b61 r86c12d65 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Tue Jun 7 13:29:00 202213 // Update Count : 67 412 // Last Modified On : Fri Apr 29 9:52:00 2022 13 // Update Count : 673 14 14 // 15 15 … … 447 447 PASS( "Expand Unique Expr", Tuples::expandUniqueExpr( transUnit ) ); // xxx - is this the right place for this? want to expand ASAP so tha, sequent passes don't need to worry about double-visiting a unique expr - needs to go after InitTweak::fix so that copy constructed return declarations are reused 448 448 449 PASS( "Translate Tries", ControlStruct::translateTries( transUnit ) ); 450 PASS( "Gen Waitfor", Concurrency::generateWaitFor( transUnit ) ); 449 PASS( "Translate Tries" , ControlStruct::translateTries( transUnit ) ); 451 450 452 451 translationUnit = convert( move( transUnit ) ); … … 518 517 519 518 PASS( "Expand Unique Expr", Tuples::expandUniqueExpr( translationUnit ) ); // xxx - is this the right place for this? want to expand ASAP so tha, sequent passes don't need to worry about double-visiting a unique expr - needs to go after InitTweak::fix so that copy constructed return declarations are reused 520 PASS( "Translate Tries", ControlStruct::translateTries( translationUnit ) ); 521 PASS( " Gen Waitfor", Concurrency::generateWaitFor( translationUnit ) );519 520 PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) ); 522 521 } 522 523 PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) ); 523 524 524 525 PASS( "Convert Specializations", GenPoly::convertSpecializations( translationUnit ) ); // needs to happen before tuple types are expanded
Note:
See TracChangeset
for help on using the changeset viewer.