Changes in src/main.cc [2cf3b87:5f3ba11]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r2cf3b87 r5f3ba11 404 404 // Currently not working due to unresolved issues with UniqueExpr 405 405 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 406 409 translationUnit = convert( move( transUnit ) ); 407 410 } else { … … 469 472 470 473 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 ) ); 471 476 } 472 477 473 PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) );478 474 479 475 480 PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
Note:
See TracChangeset
for help on using the changeset viewer.