Changeset be9288a for src/InitTweak
- Timestamp:
- Aug 15, 2017, 1:38:04 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:
- bd098ea
- Parents:
- ea6332d
- Location:
- src/InitTweak
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
rea6332d rbe9288a 13 13 // Update Count : 74 14 14 // 15 #include "FixInit.h" 15 16 16 17 #include <stddef.h> // for NULL … … 33 34 #include "Common/utility.h" // for CodeLocation, ValueGuard, toSt... 34 35 #include "FixGlobalInit.h" // for fixGlobalInit 35 #include "FixInit.h"36 36 #include "GenInit.h" // for genCtorDtor 37 37 #include "GenPoly/DeclMutator.h" // for DeclMutator … … 40 40 #include "InitTweak.h" // for getFunctionName, getCallArg 41 41 #include "Parser/LinkageSpec.h" // for C, Spec, Cforall, isBuiltin 42 #include "PassVisitor.h" // for mutateAll43 42 #include "ResolvExpr/Resolver.h" // for findVoidExpression 44 43 #include "ResolvExpr/typeops.h" // for typesCompatible -
src/InitTweak/GenInit.cc
rea6332d rbe9288a 13 13 // Update Count : 183 14 14 // 15 #include "GenInit.h" 15 16 16 17 #include <stddef.h> // for NULL … … 24 25 #include "Common/UniqueName.h" // for UniqueName 25 26 #include "Common/utility.h" // for ValueGuard, maybeClone 26 #include "GenInit.h"27 27 #include "GenPoly/DeclMutator.h" // for DeclMutator 28 28 #include "GenPoly/GenPoly.h" // for getFunctionType, isPolyType … … 30 30 #include "InitTweak.h" // for isConstExpr, InitExpander, checkIn... 31 31 #include "Parser/LinkageSpec.h" // for isOverridable, C 32 #include "PassVisitor.h" // for bool_ref, acceptAll, mutateAll33 32 #include "SymTab/Autogen.h" // for genImplicitCall, SizeType 34 33 #include "SymTab/Mangler.h" // for Mangler -
src/InitTweak/InitTweak.h
rea6332d rbe9288a 16 16 #pragma once 17 17 18 #include <bits/shared_ptr.h> // for shared_ptr19 18 #include <list> // for list 19 #include <memory> // for shared_ptr 20 20 #include <string> // for string, allocator 21 21
Note:
See TracChangeset
for help on using the changeset viewer.