Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r2cf3b87 rce36b55  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Tue Nov 30 10:25:00 2021
    13 // Update Count     : 659
     12// Last Modified On : Fri Nov 12 11:06:00 2021
     13// Update Count     : 658
    1414//
    1515
     
    5050#include "Common/UnimplementedError.h"      // for UnimplementedError
    5151#include "Common/utility.h"                 // for deleteAll, filter, printAll
    52 #include "Concurrency/Keywords.h"           // for implementMutex, implement...
    5352#include "Concurrency/Waitfor.h"            // for generateWaitfor
    5453#include "ControlStruct/ExceptDecl.h"       // for translateExcept
     
    7473#include "Tuples/Tuples.h"                  // for expandMemberTuples, expan...
    7574#include "Validate/FindSpecialDecls.h"      // for findGlobalDecls
    76 #include "Validate/CompoundLiteral.hpp"     // for handleCompoundLiterals
    7775#include "Validate/InitializerLength.hpp"   // for setLengthFromInitializer
    7876#include "Validate/LabelAddressFixer.hpp"   // for fixLabelAddresses
     
    327325                PASS( "Validate-C", SymTab::validate_C( translationUnit ) );
    328326                PASS( "Validate-D", SymTab::validate_D( translationUnit ) );
     327                PASS( "Validate-E", SymTab::validate_E( translationUnit ) );
    329328
    330329                CodeTools::fillLocations( translationUnit );
     
    339338                        forceFillCodeLocations( transUnit );
    340339
    341                         PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) );
    342                         PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
    343                         PASS( "Compound Literal", Validate::handleCompoundLiterals( transUnit ) );
    344340                        PASS( "Set Length From Initializer", Validate::setLengthFromInitializer( transUnit ) );
    345341                        PASS( "Find Global Decls", Validate::findGlobalDecls( transUnit ) );
     
    406402                        translationUnit = convert( move( transUnit ) );
    407403                } else {
    408                         PASS( "Validate-E", SymTab::validate_E( translationUnit ) );
    409404                        PASS( "Validate-F", SymTab::validate_F( translationUnit ) );
    410405
Note: See TracChangeset for help on using the changeset viewer.