Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r2cf3b87 r5f3ba11  
    404404                        // Currently not working due to unresolved issues with UniqueExpr
    405405                        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
     406
     407                        PASS( "Translate Tries" , ControlStruct::translateTries( transUnit ) );
     408
    406409                        translationUnit = convert( move( transUnit ) );
    407410                } else {
     
    469472
    470473                        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
     474
     475                        PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) );
    471476                }
    472477
    473                 PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) );
     478               
    474479
    475480                PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
Note: See TracChangeset for help on using the changeset viewer.