Changeset 14c0f7b for src/main.cc


Ignore:
Timestamp:
Jul 31, 2023, 11:25:51 AM (10 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
f496046
Parents:
e0332dd
Message:

Added invariant to check that referenced declarations are in scope. This one took a while, I don't remember why forall pointer decay is involved.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    re0332dd r14c0f7b  
    334334                PASS( "Link Reference To Types", Validate::linkReferenceToTypes, transUnit );
    335335
     336                PASS( "Forall Pointer Decay", Validate::decayForallPointers, transUnit );
    336337                PASS( "Fix Qualified Types", Validate::fixQualifiedTypes, transUnit );
    337338                PASS( "Eliminate Typedef", Validate::eliminateTypedef, transUnit );
     
    342343                PASS( "Fix Return Statements", InitTweak::fixReturnStatements, transUnit );
    343344                PASS( "Implement Concurrent Keywords", Concurrency::implementKeywords, transUnit );
    344                 PASS( "Forall Pointer Decay", Validate::decayForallPointers, transUnit );
     345                PASS( "Fix Unique Ids", Validate::fixUniqueIds, transUnit );
    345346                PASS( "Hoist Control Declarations", ControlStruct::hoistControlDecls, transUnit );
    346347
     
    369370                PASS( "Translate Throws", ControlStruct::translateThrows, transUnit );
    370371                PASS( "Fix Labels", ControlStruct::fixLabels, transUnit );
    371         PASS( "Implement Waituntil", Concurrency::generateWaitUntil, transUnit  );
     372                PASS( "Implement Waituntil", Concurrency::generateWaitUntil, transUnit  );
    372373                PASS( "Fix Names", CodeGen::fixNames, transUnit );
    373374                PASS( "Gen Init", InitTweak::genInit, transUnit );
Note: See TracChangeset for help on using the changeset viewer.