Changeset 5a40e4e for src/main.cc
- Timestamp:
- Sep 9, 2021, 3:56:32 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- d0b9247
- Parents:
- dd1cc02 (diff), d8d512e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
rdd1cc02 r5a40e4e 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:27:35202113 // Update Count : 65 812 // Last Modified On : Mon Aug 23 15:42:08 2021 13 // Update Count : 650 14 14 // 15 15 … … 335 335 PASS( "Fix Names", CodeGen::fixNames( translationUnit ) ); 336 336 PASS( "Gen Init", InitTweak::genInit( translationUnit ) ); 337 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) ); 337 338 338 if ( libcfap ) { 339 339 // generate the bodies of cfa library functions … … 365 365 } 366 366 auto transUnit = convert( move( translationUnit ) ); 367 368 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) ); 369 367 370 PASS( "Resolve", ResolvExpr::resolve( transUnit ) ); 368 371 if ( exprp ) { … … 376 379 translationUnit = convert( move( transUnit ) ); 377 380 } else { 381 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) ); 382 378 383 PASS( "Resolve", ResolvExpr::resolve( translationUnit ) ); 379 384 if ( exprp ) {
Note:
See TracChangeset
for help on using the changeset viewer.