Changeset 5a40e4e for src/main.cc


Ignore:
Timestamp:
Sep 9, 2021, 3:56:32 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    rdd1cc02 r5a40e4e  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Henry Xue
    12 // Last Modified On : Tue Jul 20 04:27:35 2021
    13 // Update Count     : 658
     12// Last Modified On : Mon Aug 23 15:42:08 2021
     13// Update Count     : 650
    1414//
    1515
     
    335335                PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
    336336                PASS( "Gen Init", InitTweak::genInit( translationUnit ) );
    337                 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
     337
    338338                if ( libcfap ) {
    339339                        // generate the bodies of cfa library functions
     
    365365                        }
    366366                        auto transUnit = convert( move( translationUnit ) );
     367
     368                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) );
     369                       
    367370                        PASS( "Resolve", ResolvExpr::resolve( transUnit ) );
    368371                        if ( exprp ) {
     
    376379                        translationUnit = convert( move( transUnit ) );
    377380                } else {
     381                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
     382
    378383                        PASS( "Resolve", ResolvExpr::resolve( translationUnit ) );
    379384                        if ( exprp ) {
Note: See TracChangeset for help on using the changeset viewer.