Changes in / [b6e0b61:86c12d65]


Ignore:
Location:
src
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/Waitfor.cc

    rb6e0b61 r86c12d65  
    5656                      |  |
    5757                      |  |
    58                       |  |
     58                            |  |
    5959                      |  |
    6060                      |  |
  • src/Concurrency/Waitfor.h

    rb6e0b61 r86c12d65  
    1919
    2020class Declaration;
    21 namespace ast {
    22         class TranslationUnit;
    23 }
    2421
    2522namespace Concurrency {
    2623        void generateWaitFor( std::list< Declaration * > & translationUnit );
    27 
    28 void generateWaitFor( ast::TranslationUnit & translationUnit );
    2924};
    3025
  • src/Concurrency/module.mk

    rb6e0b61 r86c12d65  
    1919        Concurrency/Keywords.cc \
    2020        Concurrency/Keywords.h \
    21         Concurrency/WaitforNew.cpp \
    2221        Concurrency/Waitfor.cc \
    2322        Concurrency/Waitfor.h
  • src/main.cc

    rb6e0b61 r86c12d65  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Tue Jun  7 13:29:00 2022
    13 // Update Count     : 674
     12// Last Modified On : Fri Apr 29  9:52:00 2022
     13// Update Count     : 673
    1414//
    1515
     
    447447                        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
    448448
    449                         PASS( "Translate Tries", ControlStruct::translateTries( transUnit ) );
    450                         PASS( "Gen Waitfor", Concurrency::generateWaitFor( transUnit ) );
     449                        PASS( "Translate Tries" , ControlStruct::translateTries( transUnit ) );
    451450
    452451                        translationUnit = convert( move( transUnit ) );
     
    518517
    519518                        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 ) );
    522521                }
     522
     523                PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
    523524
    524525                PASS( "Convert Specializations",  GenPoly::convertSpecializations( translationUnit ) ); // needs to happen before tuple types are expanded
Note: See TracChangeset for help on using the changeset viewer.