Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/GenInit.cc

    r8ca3a72 r0db6fc0  
    1616#include <stack>
    1717#include <list>
    18 
     18#include "GenInit.h"
    1919#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 
    3020#include "SynTree/Declaration.h"
     21#include "SynTree/Type.h"
    3122#include "SynTree/Expression.h"
     23#include "SynTree/Statement.h"
    3224#include "SynTree/Initializer.h"
    3325#include "SynTree/Mutator.h"
    34 #include "SynTree/Statement.h"
    35 #include "SynTree/Type.h"
    36 
    3726#include "SymTab/Autogen.h"
    3827#include "SymTab/Mangler.h"
     28#include "GenPoly/PolyMutator.h"
     29#include "GenPoly/DeclMutator.h"
     30#include "GenPoly/ScopedSet.h"
     31#include "ResolvExpr/typeops.h"
    3932
    4033namespace InitTweak {
     34        namespace {
     35                const std::list<Label> noLabels;
     36                const std::list<Expression *> noDesignators;
     37        }
     38
    4139        class ReturnFixer final : public GenPoly::PolyMutator {
    4240          public:
Note: See TracChangeset for help on using the changeset viewer.