Changeset 6ac5223 for src/InitTweak/GenInit.cc
- Timestamp:
- Aug 17, 2017, 3:42:21 PM (8 years ago)
- 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:
- e50e9ff
- Parents:
- 97e3296 (diff), 21f0aa8 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/GenInit.cc
r97e3296 r6ac5223 13 13 // Update Count : 183 14 14 // 15 16 #include <stack>17 #include <list>18 19 #include "InitTweak.h"20 15 #include "GenInit.h" 21 16 22 #include "Common/PassVisitor.h" 23 24 #include "GenPoly/DeclMutator.h" 25 #include "GenPoly/PolyMutator.h" 26 #include "GenPoly/ScopedSet.h" 27 28 #include "ResolvExpr/typeops.h" 29 30 #include "SynTree/Declaration.h" 31 #include "SynTree/Expression.h" 32 #include "SynTree/Initializer.h" 33 #include "SynTree/Mutator.h" 34 #include "SynTree/Statement.h" 35 #include "SynTree/Type.h" 36 37 #include "SymTab/Autogen.h" 38 #include "SymTab/Mangler.h" 17 #include <stddef.h> // for NULL 18 #include <algorithm> // for any_of 19 #include <cassert> // for assert, safe_dynamic_cast, assertf 20 #include <iterator> // for back_inserter, inserter, back_inse... 21 #include <list> // for _List_iterator, list 22 23 #include "Common/PassVisitor.h" // for PassVisitor, WithGuards, WithShort... 24 #include "Common/SemanticError.h" // for SemanticError 25 #include "Common/UniqueName.h" // for UniqueName 26 #include "Common/utility.h" // for ValueGuard, maybeClone 27 #include "GenPoly/DeclMutator.h" // for DeclMutator 28 #include "GenPoly/GenPoly.h" // for getFunctionType, isPolyType 29 #include "GenPoly/ScopedSet.h" // for ScopedSet, ScopedSet<>::const_iter... 30 #include "InitTweak.h" // for isConstExpr, InitExpander, checkIn... 31 #include "Parser/LinkageSpec.h" // for isOverridable, C 32 #include "SymTab/Autogen.h" // for genImplicitCall, SizeType 33 #include "SymTab/Mangler.h" // for Mangler 34 #include "SynTree/Declaration.h" // for ObjectDecl, DeclarationWithType 35 #include "SynTree/Expression.h" // for VariableExpr, UntypedExpr, Address... 36 #include "SynTree/Initializer.h" // for ConstructorInit, SingleInit, Initi... 37 #include "SynTree/Label.h" // for Label 38 #include "SynTree/Mutator.h" // for mutateAll 39 #include "SynTree/Statement.h" // for CompoundStmt, ImplicitCtorDtorStmt 40 #include "SynTree/Type.h" // for Type, ArrayType, Type::Qualifiers 41 #include "SynTree/Visitor.h" // for acceptAll, maybeAccept 39 42 40 43 namespace InitTweak {
Note:
See TracChangeset
for help on using the changeset viewer.