Changeset 5dcb881 for src/main.cc


Ignore:
Timestamp:
Nov 12, 2021, 11:27:15 AM (3 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
Children:
ce36b55
Parents:
3249dd8b
Message:

Split up the validate pass. (Some statistics code is repeated, but this does not effect regular runs.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main.cc

    r3249dd8b r5dcb881  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Tue Nov  9 11:10:00 2021
    13 // Update Count     : 657
     12// Last Modified On : Fri Nov 12 11:06:00 2021
     13// Update Count     : 658
    1414//
    1515
     
    318318
    319319                // add the assignment statement after the initialization of a type parameter
    320                 PASS( "Validate", SymTab::validate( translationUnit, symtabp ) );
     320                PASS( "Validate-A", SymTab::validate_A( translationUnit ) );
     321                PASS( "Validate-B", SymTab::validate_B( translationUnit ) );
     322                PASS( "Validate-C", SymTab::validate_C( translationUnit ) );
     323                PASS( "Validate-D", SymTab::validate_D( translationUnit ) );
     324                PASS( "Validate-E", SymTab::validate_E( translationUnit ) );
     325                PASS( "Validate-F", SymTab::validate_F( translationUnit ) );
    321326
    322327                CodeTools::fillLocations( translationUnit );
Note: See TracChangeset for help on using the changeset viewer.