Changes in src/main.cc [7b05de4:cdb4eaa]
- File:
-
- 1 edited
-
src/main.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
r7b05de4 rcdb4eaa 66 66 #include "Tuples/Tuples.h" // for expandMemberTuples, expan... 67 67 #include "Validate/Autogen.hpp" // for autogenerateRoutines 68 //#include "Validate/ImplementEnumFunc.hpp" // for implementEnumFunc68 #include "Validate/ImplementEnumFunc.hpp" // for implementEnumFunc 69 69 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 70 70 #include "Validate/EliminateTypedef.hpp" // for eliminateTypedef … … 333 333 334 334 PASS( "Generate Autogen Routines", Validate::autogenerateRoutines, transUnit ); 335 //PASS( "Generate Enum Attributes Functions", Validate::implementEnumFunc, transUnit );335 PASS( "Generate Enum Attributes Functions", Validate::implementEnumFunc, transUnit ); 336 336 337 337 PASS( "Implement Actors", Concurrency::implementActors, transUnit ); … … 382 382 DUMP( exprp, std::move( transUnit ) ); 383 383 PASS( "Replace Pseudo Func", Validate::replacePseudoFunc, transUnit ); 384 DUMP( reppseu, std::move( transUnit ) ); 385 PASS( "Fix Init", InitTweak::fix, transUnit, buildingLibrary() ); 384 PASS( "Fix Init", InitTweak::fix, transUnit, buildingLibrary() ); // Here 386 385 PASS( "Erase With", ResolvExpr::eraseWith, transUnit ); 387 386 … … 534 533 { "instgen", genericsp, true, "print AST after instantiate generics" }, 535 534 { "bbox", bboxp, true, "print AST before box pass" }, 536 { "bcodegen", bcodegenp, true, "print AST before code generation" }, 537 { "reppseu", reppseu, true, "print AST after replacing pseudo functions" } 535 { "bcodegen", bcodegenp, true, "print AST before code generation" } 538 536 }; 539 537 enum { printoptsSize = sizeof( printopts ) / sizeof( printopts[0] ) };
Note:
See TracChangeset
for help on using the changeset viewer.