Changeset be9288a for src/SymTab


Ignore:
Timestamp:
Aug 15, 2017, 1:38:04 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
bd098ea
Parents:
ea6332d
Message:

Fixed errors made by the clean-up tool

Location:
src/SymTab
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Autogen.cc

    rea6332d rbe9288a  
    1515#include "Autogen.h"
    1616
    17 #include <cassert>                // for assert, assertf
    18 #include <cstddef>                // for NULL
     17#include <cstddef>                 // for NULL
     18#include <algorithm>               // for count_if
     19#include <cassert>                 // for safe_dynamic_cast, assert, assertf
     20#include <iterator>                // for back_insert_iterator, back_inserter
     21#include <list>                    // for list, _List_iterator, list<>::iter...
     22#include <set>                     // for set, _Rb_tree_const_iterator
     23#include <utility>                 // for pair
     24#include <vector>                  // for vector
    1925
    2026#include "AddVisit.h"             // for addVisit
     
    2329#include "GenPoly/ScopedSet.h"    // for ScopedSet
    2430#include "Parser/LinkageSpec.h"   // for AutoGen, Intrinsic, Spec
     31#include "SymTab/Mangler.h"       // for mangleType
    2532#include "SynTree/Statement.h"    // for SwitchStmt (ptr only), CompoundStmt
    2633#include "SynTree/Type.h"         // for Type, ArrayType, Type::StorageClasses
  • src/SymTab/Validate.cc

    rea6332d rbe9288a  
    4646#include <utility>                     // for pair
    4747
     48#include "CodeGen/CodeGenerator.h"     // for genName
    4849#include "Common/PassVisitor.h"        // for PassVisitor, WithDeclsToAdd
    4950#include "Common/ScopedMap.h"          // for ScopedMap
    5051#include "Common/SemanticError.h"      // for SemanticError
    5152#include "Common/UniqueName.h"         // for UniqueName
     53#include "Common/utility.h"            // for operator+, cloneAll, deleteAll
     54#include "Concurrency/Keywords.h"      // for applyKeywords
    5255#include "FixFunction.h"               // for FixFunction
    5356#include "Indexer.h"                   // for Indexer
     
    5558#include "Parser/LinkageSpec.h"        // for C
    5659#include "ResolvExpr/typeops.h"        // for typesCompatible
     60#include "SymTab/AddVisit.h"           // for addVisit
     61#include "SymTab/Autogen.h"            // for SizeType
     62#include "SynTree/Attribute.h"         // for noAttributes, Attribute
    5763#include "SynTree/Constant.h"          // for Constant
    5864#include "SynTree/Declaration.h"       // for ObjectDecl, DeclarationWithType
     
    6874class ReturnStmt;
    6975class SwitchStmt;
     76
    7077
    7178#define debugPrint( x ) if ( doDebug ) { std::cout << x; }
Note: See TracChangeset for help on using the changeset viewer.