Changes in src/main.cc [b542bfb:f0121d7]
- File:
-
- 1 edited
-
src/main.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
rb542bfb rf0121d7 42 42 #include "Common/UnimplementedError.h" 43 43 #include "../config.h" 44 #include "Tuples/Tuples.h" 44 45 45 46 using namespace std; … … 231 232 OPTPRINT( "tweakInit" ) 232 233 InitTweak::genInit( translationUnit ); 233 234 OPTPRINT( "expandMemberTuples" ); 235 Tuples::expandMemberTuples( translationUnit ); 234 236 if ( libcfap ) { 235 237 // generate the bodies of cfa library functions … … 248 250 return 0; 249 251 } // if 252 253 OPTPRINT( "expandUniqueExpr" ); // xxx - is this the right place for this? want to expand ASAP so that subsequent passes don't need to worry about double-visiting a unique expr 254 Tuples::expandUniqueExpr( translationUnit ); 250 255 251 256 // fix ObjectDecl - replaces ConstructorInit nodes … … 272 277 OPTPRINT( "box" ) 273 278 GenPoly::box( translationUnit ); 279 OPTPRINT( "expandTuples" ); // xxx - is this the right place for this? 280 Tuples::expandTuples( translationUnit ); 274 281 275 282 // print tree right before code generation
Note:
See TracChangeset
for help on using the changeset viewer.