Changes in src/InitTweak/GenInit.cc [8ca3a72:0db6fc0]
- File:
-
- 1 edited
-
src/InitTweak/GenInit.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/GenInit.cc
r8ca3a72 r0db6fc0 16 16 #include <stack> 17 17 #include <list> 18 18 #include "GenInit.h" 19 19 #include "InitTweak.h" 20 #include "GenInit.h"21 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 20 #include "SynTree/Declaration.h" 21 #include "SynTree/Type.h" 31 22 #include "SynTree/Expression.h" 23 #include "SynTree/Statement.h" 32 24 #include "SynTree/Initializer.h" 33 25 #include "SynTree/Mutator.h" 34 #include "SynTree/Statement.h"35 #include "SynTree/Type.h"36 37 26 #include "SymTab/Autogen.h" 38 27 #include "SymTab/Mangler.h" 28 #include "GenPoly/PolyMutator.h" 29 #include "GenPoly/DeclMutator.h" 30 #include "GenPoly/ScopedSet.h" 31 #include "ResolvExpr/typeops.h" 39 32 40 33 namespace InitTweak { 34 namespace { 35 const std::list<Label> noLabels; 36 const std::list<Expression *> noDesignators; 37 } 38 41 39 class ReturnFixer final : public GenPoly::PolyMutator { 42 40 public:
Note:
See TracChangeset
for help on using the changeset viewer.